author | nemo |
Sun, 13 Oct 2013 14:40:14 -0400 | |
changeset 9533 | db77654c3565 |
parent 9339 | 14f5f3a1e2f7 |
child 9521 | 8054d9d775fd |
child 9856 | 891eb7fcc26c |
child 9861 | 2b4f9e1496c6 |
permissions | -rw-r--r-- |
9190 | 1 |
#where to build libs and bins |
2 |
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin) |
|
3 |
set(LIBRARY_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin) |
|
9224 | 4 |
#these variables are for non-makefile generators |
5 |
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${EXECUTABLE_OUTPUT_PATH}) |
|
6 |
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG ${EXECUTABLE_OUTPUT_PATH}) |
|
7 |
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE ${EXECUTABLE_OUTPUT_PATH}) |
|
8 |
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LIBRARY_OUTPUT_PATH}) |
|
9 |
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_DEBUG ${LIBRARY_OUTPUT_PATH}) |
|
10 |
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELEASE ${LIBRARY_OUTPUT_PATH}) |
|
11 |
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LIBRARY_OUTPUT_PATH}) |
|
12 |
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE ${LIBRARY_OUTPUT_PATH}) |
|
13 |
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_DEBUG ${LIBRARY_OUTPUT_PATH}) |
|
9190 | 14 |
|
15 |
#resource paths |
|
16 |
if(UNIX AND NOT APPLE) |
|
17 |
set(target_binary_install_dir "bin") |
|
18 |
set(target_library_install_dir "lib") |
|
19 |
||
20 |
string(SUBSTRING "${DATA_INSTALL_DIR}" 0 1 sharepath_start) |
|
21 |
if (NOT (${sharepath_start} MATCHES "/")) |
|
22 |
set(HEDGEWARS_DATADIR "${CMAKE_INSTALL_PREFIX}/${DATA_INSTALL_DIR}/") |
|
23 |
else() |
|
24 |
set(HEDGEWARS_DATADIR "${DATA_INSTALL_DIR}/") |
|
25 |
endif() |
|
26 |
set(HEDGEWARS_FULL_DATADIR "${HEDGEWARS_DATADIR}") |
|
27 |
else() |
|
28 |
set(target_binary_install_dir "./") |
|
29 |
||
30 |
if(APPLE) |
|
31 |
set(target_library_install_dir "../Frameworks/") |
|
32 |
set(CMAKE_INSTALL_PREFIX "Hedgewars.app/Contents/MacOS/") |
|
33 |
set(HEDGEWARS_DATADIR "../Resources/") |
|
34 |
set(HEDGEWARS_FULL_DATADIR "/Applications/${CMAKE_INSTALL_PREFIX}/${HEDGEWARS_DATADIR}") |
|
35 |
elseif(WIN32) |
|
36 |
set(target_library_install_dir "./") |
|
37 |
set(HEDGEWARS_DATADIR "./") |
|
38 |
set(HEDGEWARS_FULL_DATADIR "${CMAKE_INSTALL_PREFIX}/") |
|
39 |
link_directories("${EXECUTABLE_OUTPUT_PATH}" "${CMAKE_SOURCE_DIR}/misc/winutils/bin") |
|
40 |
endif() |
|
41 |
endif() |
|
9198 | 42 |
|
43 |
||
44 |
#RPATH SETTINGS |
|
45 |
#necessary for dynamic libraries on UNIX, ignored elsewhere |
|
46 |
||
47 |
#use, i.e. don't skip the full RPATH for the build tree |
|
48 |
set(CMAKE_SKIP_BUILD_RPATH FALSE) |
|
49 |
set(CMAKE_SKIP_INSTALL_RPATH FALSE) |
|
50 |
||
51 |
#it's safe to use our RPATH because it is relative |
|
52 |
set(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE) |
|
53 |
||
9339
14f5f3a1e2f7
some work on cmake_pascal files to better support flags we use, make engine compile as library again
koda
parents:
9313
diff
changeset
|
54 |
#add the automatically determined parts of the RPATH |
14f5f3a1e2f7
some work on cmake_pascal files to better support flags we use, make engine compile as library again
koda
parents:
9313
diff
changeset
|
55 |
#which point to directories outside the build tree to the install RPATH |
14f5f3a1e2f7
some work on cmake_pascal files to better support flags we use, make engine compile as library again
koda
parents:
9313
diff
changeset
|
56 |
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH FALSE) |
14f5f3a1e2f7
some work on cmake_pascal files to better support flags we use, make engine compile as library again
koda
parents:
9313
diff
changeset
|
57 |
|
9198 | 58 |
#paths where to find libraries (final slash not optional): |
59 |
# - the first is relative to the executable |
|
60 |
# - the second is the same directory of the executable (so it runs in bin/) |
|
61 |
# - the third one is the full path of the system dir |
|
62 |
#source http://www.cmake.org/pipermail/cmake/2008-January/019290.html |
|
63 |
set(CMAKE_INSTALL_RPATH "$ORIGIN/../${target_library_install_dir}/:$ORIGIN/:${CMAKE_INSTALL_PREFIX}/${target_library_install_dir}/") |
|
64 |
||
65 |
||
9200 | 66 |
#install_name_tool magic for OS X |
67 |
set(CMAKE_INSTALL_NAME_DIR "@executable_path/../Frameworks") |
|
68 |