author | unc0rr |
Fri, 04 Mar 2011 22:45:28 +0300 | |
changeset 4982 | 3572eaf14340 |
parent 4775 | 663aa9552bfc |
child 5053 | a767954cfa03 |
permissions | -rw-r--r-- |
2593 | 1 |
if (NOT APPLE) |
2641 | 2 |
CONFIGURE_FILE( |
3 |
"${CMAKE_CURRENT_SOURCE_DIR}/cmake_uninstall.cmake.in" |
|
4 |
"${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" |
|
5 |
IMMEDIATE @ONLY) |
|
2593 | 6 |
|
2641 | 7 |
ADD_CUSTOM_TARGET(uninstall "${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake") |
2593 | 8 |
endif() |
9 |
||
2219
07f5345ecae7
additional variable (BUNDLE) to make a standalone Mac application
koda
parents:
diff
changeset
|
10 |
if (APPLE AND BUNDLE) |
07f5345ecae7
additional variable (BUNDLE) to make a standalone Mac application
koda
parents:
diff
changeset
|
11 |
|
2641 | 12 |
find_package(Qt4 REQUIRED) |
13 |
find_package(SDL REQUIRED) |
|
14 |
find_package(SDL_image REQUIRED) |
|
15 |
find_package(SDL_net REQUIRED) |
|
16 |
find_package(SDL_ttf REQUIRED) |
|
17 |
find_package(SDL_mixer REQUIRED) |
|
18 |
find_package(OGGVORBIS REQUIRED) |
|
4775 | 19 |
if(NOT NOAUTOUPDATE) |
20 |
find_package(SPARKLE) |
|
21 |
if(SPARKLE_FOUND) |
|
22 |
set(SPARKLE_FOUND 1) |
|
23 |
else() |
|
24 |
set(SPARKLE_FOUND 0) |
|
25 |
endif() |
|
26 |
endif() |
|
4335 | 27 |
|
28 |
#use the associated tool from the libraries we've selected |
|
4341 | 29 |
string(REGEX REPLACE "(.*)/include.*" "\\1" qt_base_dir "${QT_INCLUDE_DIR}") |
30 |
find_program(macdeployqt_EXE NAMES macdeployqt macdeployqt-mac PATHS ${qt_base_dir}/bin NO_DEFAULT_PATH) |
|
2219
07f5345ecae7
additional variable (BUNDLE) to make a standalone Mac application
koda
parents:
diff
changeset
|
31 |
|
2641 | 32 |
if(NOT macdeployqt_EXE) |
33 |
message(FATAL_ERROR "The utility macdeployqt is required to create the bundle!") |
|
34 |
endif() |
|
2219
07f5345ecae7
additional variable (BUNDLE) to make a standalone Mac application
koda
parents:
diff
changeset
|
35 |
|
2641 | 36 |
#dummy target, we're interested in the postscript file |
37 |
add_custom_target(bundle) |
|
2219
07f5345ecae7
additional variable (BUNDLE) to make a standalone Mac application
koda
parents:
diff
changeset
|
38 |
|
2641 | 39 |
set_target_properties(bundle PROPERTIES POST_INSTALL_SCRIPT ${CMAKE_CURRENT_BINARY_DIR}/CreateMacBundle.cmake) |
2219
07f5345ecae7
additional variable (BUNDLE) to make a standalone Mac application
koda
parents:
diff
changeset
|
40 |
|
2641 | 41 |
set(frameworks_dir ${bundle_name}/Contents/Frameworks/) |
2401 | 42 |
|
2641 | 43 |
string(REGEX REPLACE "(.*);-.*" "\\1" sdl_dir "${SDL_LIBRARY}") |
2547 | 44 |
|
2641 | 45 |
CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/CreateMacBundle.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/CreateMacBundle.cmake) |
2219
07f5345ecae7
additional variable (BUNDLE) to make a standalone Mac application
koda
parents:
diff
changeset
|
46 |
|
2401 | 47 |
endif(APPLE AND BUNDLE) |