Skip to content

Commit

Permalink
build plugin documentation on mac
Browse files Browse the repository at this point in the history
  • Loading branch information
lasconic committed Nov 13, 2012
1 parent 345614d commit 2d3b0b9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
3 changes: 1 addition & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ include ( ${PROJECT_SOURCE_DIR}/build/FindPulseAudio.cmake)
##
## look for Qt4
##

set(QT_MIN_VERSION "4.8.0")
set(QT_USE_QTXML TRUE)
set(QT_USE_QTSVG TRUE)
Expand Down Expand Up @@ -474,7 +473,7 @@ add_custom_command(OUTPUT ${PROJECT_BINARY_DIR}/plugins
)

add_custom_target(install_plugins_manual
COMMAND ${PROJECT_BINARY_DIR}/manual/genManual ${PROJECT_SOURCE_DIR} ${CMAKE_INSTALL_PREFIX}/${Mscore_SHARE_NAME}${Mscore_INSTALL_NAME}manual
COMMAND ${PROJECT_BINARY_DIR}/manual/${CMAKE_CFG_INTDIR}/genManual ${PROJECT_SOURCE_DIR} ${CMAKE_INSTALL_PREFIX}/${Mscore_SHARE_NAME}${Mscore_INSTALL_NAME}manual
)

if (MINGW)
Expand Down
8 changes: 6 additions & 2 deletions Makefile.osx
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,14 @@ version: revision
@echo ${VERSION}

install:
cd build.release;xcodebuild -project ${XCODEPROJ} -configuration Release -target install;
cd build.release; \
xcodebuild -project ${XCODEPROJ} -configuration Release -target install_plugins_manual; \
xcodebuild -project ${XCODEPROJ} -configuration Release -target install;

installdebug:
cd build.debug;xcodebuild -project ${XCODEPROJ} -configuration Debug -target install;
cd build.debug; \
xcodebuild -project ${XCODEPROJ} -configuration Debug -target install_plugins_manual; \
xcodebuild -project ${XCODEPROJ} -configuration Debug -target install;

package:
build/package_mac;
Expand Down

0 comments on commit 2d3b0b9

Please sign in to comment.