author | koda |
Thu, 25 Oct 2012 01:16:13 +0200 | |
changeset 7816 | a25e943dd4b0 |
parent 7112 | 38c5d56c4d6e |
child 7817 | 6cc558a69b58 |
permissions | -rw-r--r-- |
4335 | 1 |
message(STATUS "Performing standalone bundle creation...") |
2 |
||
5053 | 3 |
execute_process(COMMAND ls ${frameworks_dir} RESULT_VARIABLE doBundle OUTPUT_QUIET ERROR_QUIET) |
2401 | 4 |
|
5096 | 5 |
execute_process(COMMAND mkdir -p ${frameworks_dir}) |
7816 | 6 |
# macdeployqt will convert safely any absolute path library for 'hedgewars' |
7112
38c5d56c4d6e
rename a few internal cmake variables (for consistency and readability)
koda
parents:
5096
diff
changeset
|
7 |
execute_process(COMMAND ${macdeployqt_executable} ${CMAKE_BINARY_DIR}/${bundle_name} OUTPUT_QUIET ERROR_QUIET) |
7816 | 8 |
# but macdeployqt will not work for 'hwengine'; luckily the dylibs were already updated before |
9 |
execute_process(COMMAND install_name_tool -change ${FFMPEG_LIBAVCODEC} @executable_path/../Frameworks/libavcodec.dylib ${CMAKE_BINARY_DIR}/${bundle_name}/Contents/MacOS/hwengine) |
|
10 |
execute_process(COMMAND install_name_tool -change ${FFMPEG_LIBAVFORMAT} @executable_path/../Frameworks/libavformat.dylib ${CMAKE_BINARY_DIR}/${bundle_name}/Contents/MacOS/hwengine) |
|
11 |
execute_process(COMMAND install_name_tool -change ${FFMPEG_LIBAVUTIL} @executable_path/../Frameworks/libavutil.dylib ${CMAKE_BINARY_DIR}/${bundle_name}/Contents/MacOS/hwengine) |
|
5053 | 12 |
|
5096 | 13 |
if(doBundle EQUAL 1) |
5053 | 14 |
execute_process(COMMAND cp -pPR ${sdl_dir} ${CMAKE_BINARY_DIR}/${frameworks_dir}/SDL.framework) |
15 |
execute_process(COMMAND cp -pPR ${SDLIMAGE_LIBRARY} ${CMAKE_BINARY_DIR}/${frameworks_dir}/SDL_image.framework) |
|
16 |
execute_process(COMMAND cp -pPR ${SDLNET_LIBRARY} ${CMAKE_BINARY_DIR}/${frameworks_dir}/SDL_net.framework) |
|
17 |
execute_process(COMMAND cp -pPR ${SDLTTF_LIBRARY} ${CMAKE_BINARY_DIR}/${frameworks_dir}/SDL_ttf.framework) |
|
18 |
execute_process(COMMAND cp -pPR ${SDLMIXER_LIBRARY} ${CMAKE_BINARY_DIR}/${frameworks_dir}/SDL_mixer.framework) |
|
19 |
execute_process(COMMAND cp -pPR ${OGG_LIBRARY} ${CMAKE_BINARY_DIR}/${frameworks_dir}/Ogg.framework) |
|
20 |
execute_process(COMMAND cp -pPR ${VORBIS_LIBRARY} ${CMAKE_BINARY_DIR}/${frameworks_dir}/Vorbis.framework) |
|
2401 | 21 |
|
5053 | 22 |
if(${SPARKLE_FOUND}) |
23 |
execute_process(COMMAND cp -pPR ${SPARKLE_LIBRARY} ${CMAKE_BINARY_DIR}/${frameworks_dir}/Sparkle.framework) |
|
24 |
endif() |
|
25 |
message(STATUS "Bundle frameworks added") |
|
26 |
else() |
|
27 |
message(STATUS "Bundle frameworks already present; skipping...") |
|
2401 | 28 |
endif() |