Changeset 8135 for code/branches/mac_osx/cmake
- Timestamp:
- Mar 27, 2011, 9:50:18 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/mac_osx/cmake/PrepareDevBundle.cmake
r8090 r8135 25 25 26 26 IF(APPLE) 27 IF(NOT CMAKE_CONFIGURATION_TYPES) 28 SET(_subdirs .) 29 SET(_default_subdir .) 30 ELSE() 31 SET(_subdirs ${CMAKE_CONFIGURATION_TYPES}) 32 SET(_default_subdir) # No default subdir 33 ENDIF() 34 35 FOREACH(_subdir ${_subdirs}) 36 GET_FILENAME_COMPONENT(CURRENT_RUNTIME_DIR ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${_subdir} ABSOLUTE) 37 27 38 # Convenience variables 28 # Note that this is just an empty bundle! It will be copied into the29 # corresponding directoryat build time30 SET(DEVBUNDLE_CURRENT_DIR "${C MAKE_BINARY_DIR}/${DEFAULT_BUNDLE_PATH}/Dummy/${PROJECT_NAME}.app/Contents")39 # Note that this is just an empty bundle! The executable itself will 40 # be added at build time 41 SET(DEVBUNDLE_CURRENT_DIR "${CURRENT_RUNTIME_DIR}/${PROJECT_NAME}.app/Contents") 31 42 SET(DEVBUNDLE_CURRENT_BIN "${DEVBUNDLE_CURRENT_DIR}/MacOS") 32 43 SET(DEVBUNDLE_CURRENT_RESOURCES "${DEVBUNDLE_CURRENT_DIR}/Resources") … … 46 57 CONFIGURE_FILE("${CMAKE_SOURCE_DIR}/${DEFAULT_DATA_PATH}/mac/${DEVBUNDLE_DEFAULT_LANGFILE}/${DEVBUNDLE_NIB_FILE}/keyedobjects.nib" "${DEVBUNDLE_CURRENT_RESOURCES}/${DEVBUNDLE_DEFAULT_LANGFILE}/${DEVBUNDLE_NIB_FILE}/keyedobjects.nib" COPYONLY) 47 58 CONFIGURE_FILE("${CMAKE_SOURCE_DIR}/${DEFAULT_DATA_PATH}/mac/${DEVBUNDLE_DEFAULT_LANGFILE}/InfoPlist.strings" "${DEVBUNDLE_CURRENT_RESOURCES}/${DEVBUNDLE_DEFAULT_LANGFILE}/InfoPlist.strings") 59 60 ENDFOREACH(_subdir) 48 61 ENDIF(APPLE)
Note: See TracChangeset
for help on using the changeset viewer.