author | unc0rr |
Sat, 14 Nov 2015 17:39:45 +0300 | |
changeset 11380 | ff0fa38bdb18 |
parent 9851 | b1e4f0dddfb5 |
child 11609 | b77870abb3c4 |
permissions | -rw-r--r-- |
4335 | 1 |
|
9345
bb9bf1efd0d2
use the modern install(SCRIPT ...) command instead of legacy POST_BUILD_SCRIPT
koda
parents:
9050
diff
changeset
|
2 |
execute_process(COMMAND stat ${frameworks_dir}/SDL.framework RESULT_VARIABLE doBundle OUTPUT_QUIET ERROR_QUIET) |
8317
ec9f94ab2737
remove the CROSSAPPLE option until a better solution is found
koda
parents:
8316
diff
changeset
|
3 |
execute_process(COMMAND mkdir -p ${frameworks_dir}) |
7816 | 4 |
# macdeployqt will convert safely any absolute path library for 'hedgewars' |
8316
89232b2fa1d6
cmake rework, cleanup a lot of redundant sections, separate library and binary install location, unify osx and win handling of the data directory (tested on win, lin and mac)
koda
parents:
7817
diff
changeset
|
5 |
execute_process(COMMAND ${macdeployqt_executable} ${CMAKE_BINARY_DIR}/Hedgewars.app OUTPUT_QUIET ERROR_QUIET) |
7817
6cc558a69b58
countless small optimisation for cmake, output messages are now coherent (mostly) and the options get fully respected (eg. skipping library search if not activated)
koda
parents:
7816
diff
changeset
|
6 |
|
6cc558a69b58
countless small optimisation for cmake, output messages are now coherent (mostly) and the options get fully respected (eg. skipping library search if not activated)
koda
parents:
7816
diff
changeset
|
7 |
if(NOT ${NOVIDEOREC}) |
6cc558a69b58
countless small optimisation for cmake, output messages are now coherent (mostly) and the options get fully respected (eg. skipping library search if not activated)
koda
parents:
7816
diff
changeset
|
8 |
# but macdeployqt will not work for 'hwengine'; luckily the dylibs were already updated before |
8704 | 9 |
execute_process(COMMAND install_name_tool -change ${LIBAVCODEC_LIBRARY} @executable_path/../Frameworks/libavcodec.dylib ${engine_full_path}) |
10 |
execute_process(COMMAND install_name_tool -change ${LIBAVFORMAT_LIBRARY} @executable_path/../Frameworks/libavformat.dylib ${engine_full_path}) |
|
11 |
execute_process(COMMAND install_name_tool -change ${LIBAVUTIL_LIBRARY} @executable_path/../Frameworks/libavutil.dylib ${engine_full_path}) |
|
7817
6cc558a69b58
countless small optimisation for cmake, output messages are now coherent (mostly) and the options get fully respected (eg. skipping library search if not activated)
koda
parents:
7816
diff
changeset
|
12 |
endif() |
6cc558a69b58
countless small optimisation for cmake, output messages are now coherent (mostly) and the options get fully respected (eg. skipping library search if not activated)
koda
parents:
7816
diff
changeset
|
13 |
|
6cc558a69b58
countless small optimisation for cmake, output messages are now coherent (mostly) and the options get fully respected (eg. skipping library search if not activated)
koda
parents:
7816
diff
changeset
|
14 |
if(NOT ${NOPNG}) |
6cc558a69b58
countless small optimisation for cmake, output messages are now coherent (mostly) and the options get fully respected (eg. skipping library search if not activated)
koda
parents:
7816
diff
changeset
|
15 |
#same here, for libpng and hwengine, let's assume the version pulled by macdeployqt is the same |
6cc558a69b58
countless small optimisation for cmake, output messages are now coherent (mostly) and the options get fully respected (eg. skipping library search if not activated)
koda
parents:
7816
diff
changeset
|
16 |
#(yes libpng is pulled by macdeployqt even when NOVIDEOREC is active) |
8322 | 17 |
execute_process(COMMAND install_name_tool -change ${PNG_LIBRARY} @executable_path/../Frameworks/${PNG_LIBNAME} ${engine_full_path}) |
9050 | 18 |
execute_process(COMMAND install_name_tool -change ${ZLIB_LIBRARY} @executable_path/../Frameworks/${ZLIB_LIBNAME} ${engine_full_path}) |
7817
6cc558a69b58
countless small optimisation for cmake, output messages are now coherent (mostly) and the options get fully respected (eg. skipping library search if not activated)
koda
parents:
7816
diff
changeset
|
19 |
endif() |
5053 | 20 |
|
5096 | 21 |
if(doBundle EQUAL 1) |
9849 | 22 |
execute_process(COMMAND cp ${PNG_LIBRARY} ${frameworks_dir}) |
23 |
||
9851 | 24 |
execute_process(COMMAND cp -pPR ${sdl_library_only} ${frameworks_dir}) |
25 |
execute_process(COMMAND cp -pPR ${SDLIMAGE_LIBRARY} ${frameworks_dir}) |
|
26 |
execute_process(COMMAND cp -pPR ${SDLNET_LIBRARY} ${frameworks_dir}) |
|
27 |
execute_process(COMMAND cp -pPR ${SDLTTF_LIBRARY} ${frameworks_dir}) |
|
28 |
execute_process(COMMAND cp -pPR ${SDLMIXER_LIBRARY} ${frameworks_dir}) |
|
29 |
execute_process(COMMAND cp -pPR ${OGG_LIBRARY} ${frameworks_dir}) |
|
30 |
execute_process(COMMAND cp -pPR ${VORBIS_LIBRARY} ${frameworks_dir}) |
|
2401 | 31 |
|
5053 | 32 |
if(${SPARKLE_FOUND}) |
9851 | 33 |
execute_process(COMMAND cp -pPR ${SPARKLE_LIBRARY} ${frameworks_dir}) |
5053 | 34 |
endif() |
9345
bb9bf1efd0d2
use the modern install(SCRIPT ...) command instead of legacy POST_BUILD_SCRIPT
koda
parents:
9050
diff
changeset
|
35 |
message(STATUS "Frameworks and libraries successfully copied...") |
5053 | 36 |
else() |
9345
bb9bf1efd0d2
use the modern install(SCRIPT ...) command instead of legacy POST_BUILD_SCRIPT
koda
parents:
9050
diff
changeset
|
37 |
message(STATUS "Frameworks already present, skipping...") |
2401 | 38 |
endif() |