iOnly build bundles in standalone mode

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@506 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Jan Möbius
2012-01-18 10:35:09 +00:00
parent 0c50c5870a
commit ae03ae89d4

View File

@@ -35,6 +35,9 @@ if ( NOT DEFINED BUILD_APPS )
set( BUILD_APPS true CACHE BOOL "Enable or disable building of apps" ) set( BUILD_APPS true CACHE BOOL "Enable or disable building of apps" )
endif() endif()
# Only call fixbundle, when we are building OpenMesh standalone
if(${PROJECT_NAME} MATCHES "OpenMesh")
if (WIN32) if (WIN32)
if ( NOT "${CMAKE_GENERATOR}" MATCHES "MinGW Makefiles" AND BUILD_APPS ) if ( NOT "${CMAKE_GENERATOR}" MATCHES "MinGW Makefiles" AND BUILD_APPS )
add_custom_target (fixbundle ALL add_custom_target (fixbundle ALL
@@ -48,6 +51,8 @@ if (APPLE)
) )
endif() endif()
endif() # project OpenMesh
# ======================================================================== # ========================================================================
# Call the subdirectories with there projects # Call the subdirectories with there projects
# ======================================================================== # ========================================================================
@@ -67,9 +72,12 @@ add_subdirectory (Doc)
# Bundle generation (Targets exist, now configure them) # Bundle generation (Targets exist, now configure them)
# ======================================================================== # ========================================================================
# Only call fixbundle, when we are building OpenMesh standalone
if(${PROJECT_NAME} MATCHES "OpenMesh")
if (WIN32 AND BUILD_APPS ) if (WIN32 AND BUILD_APPS )
# prepare bundle generation cmake file and add a build target for it # prepare bundle generation cmake file and add a build target for it
configure_file ("${CMAKE_CURRENT_SOURCE_DIR}/cmake/fixbundle.cmake.win.in" configure_file ("${CMAKE_SOURCE_DIR}/cmake/fixbundle.cmake.win.in"
"${CMAKE_BINARY_DIR}/fixbundle.win.cmake" @ONLY IMMEDIATE) "${CMAKE_BINARY_DIR}/fixbundle.win.cmake" @ONLY IMMEDIATE)
if ( NOT "${CMAKE_GENERATOR}" MATCHES "MinGW Makefiles" ) if ( NOT "${CMAKE_GENERATOR}" MATCHES "MinGW Makefiles" )
@@ -82,13 +90,12 @@ endif()
if (APPLE) if (APPLE)
# prepare bundle generation cmake file and add a build target for it # prepare bundle generation cmake file and add a build target for it
configure_file ("${CMAKE_CURRENT_SOURCE_DIR}/cmake/fixbundle.cmake.in" configure_file ("${CMAKE_SOURCE_DIR}/cmake/fixbundle.cmake.in"
"${CMAKE_BINARY_DIR}/fixbundle.cmake" @ONLY IMMEDIATE) "${CMAKE_BINARY_DIR}/fixbundle.cmake" @ONLY IMMEDIATE)
# let bundle generation depend on all targets # let bundle generation depend on all targets
add_dependencies (fixbundle DecimaterGui ProgViewer QtViewer SubdividerGui) add_dependencies (fixbundle DecimaterGui ProgViewer QtViewer SubdividerGui)
# Required for Snow leopard, and the latest qt. Then the resources have to be copied # Required for Snow leopard, and the latest qt. Then the resources have to be copied
if ( EXISTS "/opt/local/libexec/qt4-mac/lib/QtGui.framework/Versions/4/Resources/qt_menu.nib" ) if ( EXISTS "/opt/local/libexec/qt4-mac/lib/QtGui.framework/Versions/4/Resources/qt_menu.nib" )
add_custom_command(TARGET OpenMesh POST_BUILD add_custom_command(TARGET OpenMesh POST_BUILD
@@ -98,6 +105,8 @@ if (APPLE)
endif () endif ()
endif()
# ======================================================================== # ========================================================================