author | koda |
Mon, 25 Feb 2013 19:48:35 +0100 | |
branch | physfslayer |
changeset 8558 | e96bf10216ef |
parent 8555 | 342f7af2eea5 |
child 8597 | 00adaf34d2a3 |
permissions | -rw-r--r-- |
184 | 1 |
project(hedgewars) |
2 |
||
5407 | 3 |
#initialise cmake environment |
8104
09c38cdf380d
show console on win when debugging to see frontend messages
koda
parents:
8093
diff
changeset
|
4 |
cmake_minimum_required(VERSION 2.6.0) |
8146 | 5 |
foreach(hwpolicy CMP0003 CMP0012 CMP0017) |
6 |
if(POLICY ${hwpolicy}) |
|
7 |
cmake_policy(SET ${hwpolicy} NEW) |
|
8 |
endif() |
|
9 |
endforeach() |
|
8087
ccc99eebdac2
little cmake cleanup, search installed modules first, then our own
koda
parents:
8082
diff
changeset
|
10 |
#use available modules, fallback to ours if not present (CMP0017 helps) |
ccc99eebdac2
little cmake cleanup, search installed modules first, then our own
koda
parents:
8082
diff
changeset
|
11 |
set(CMAKE_MODULE_PATH "${CMAKE_ROOT}/Modules" "${CMAKE_CURRENT_SOURCE_DIR}/cmake_modules") |
5405 | 12 |
|
8090
38d9cc60b14c
cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents:
8089
diff
changeset
|
13 |
|
8104
09c38cdf380d
show console on win when debugging to see frontend messages
koda
parents:
8093
diff
changeset
|
14 |
#usually this is set at release time |
09c38cdf380d
show console on win when debugging to see frontend messages
koda
parents:
8093
diff
changeset
|
15 |
option(NOREVISION "Build Hedgewars without revision information [default: off]" OFF) |
09c38cdf380d
show console on win when debugging to see frontend messages
koda
parents:
8093
diff
changeset
|
16 |
|
09c38cdf380d
show console on win when debugging to see frontend messages
koda
parents:
8093
diff
changeset
|
17 |
#set other default values |
8090
38d9cc60b14c
cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents:
8089
diff
changeset
|
18 |
option(NOSERVER "Disable gameServer build [default: auto]" OFF) |
38d9cc60b14c
cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents:
8089
diff
changeset
|
19 |
option(NOPNG "Disable screenshoot compression [default: auto]" OFF) |
38d9cc60b14c
cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents:
8089
diff
changeset
|
20 |
option(NOVIDEOREC "Disable video recording [default: auto]" OFF) |
38d9cc60b14c
cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents:
8089
diff
changeset
|
21 |
|
8549
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
22 |
#set this to ON when 2.1.0 becomes more widespread (and only for linux) |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
23 |
option(SYSTEM_PHYSFS "Use system physfs [default:off]" OFF) |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
24 |
|
8090
38d9cc60b14c
cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents:
8089
diff
changeset
|
25 |
option(BUILD_ENGINE_LIBRARY "Enable hwengine library [default: off]" OFF) |
38d9cc60b14c
cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents:
8089
diff
changeset
|
26 |
option(ANDROID "Enable Android build [default: off]" OFF) |
38d9cc60b14c
cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents:
8089
diff
changeset
|
27 |
option(NOAUTOUPDATE "Disable OS X Sparkle update checking" OFF) |
38d9cc60b14c
cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents:
8089
diff
changeset
|
28 |
option(MINIMAL_FLAGS "Respect system flags as much as possible [default: off]" OFF) |
8549
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
29 |
|
8333
416cb5e5a405
move DATA_INSTALL_DIR to the configurable options section
koda
parents:
8331
diff
changeset
|
30 |
set(FPFLAGS "" CACHE STRING "Additional Freepascal flags") |
416cb5e5a405
move DATA_INSTALL_DIR to the configurable options section
koda
parents:
8331
diff
changeset
|
31 |
set(GHFLAGS "" CACHE STRING "Additional Haskell flags") |
416cb5e5a405
move DATA_INSTALL_DIR to the configurable options section
koda
parents:
8331
diff
changeset
|
32 |
if(UNIX AND NOT APPLE) |
416cb5e5a405
move DATA_INSTALL_DIR to the configurable options section
koda
parents:
8331
diff
changeset
|
33 |
set(DATA_INSTALL_DIR "share/hedgewars" CACHE STRING "Resource folder path") |
416cb5e5a405
move DATA_INSTALL_DIR to the configurable options section
koda
parents:
8331
diff
changeset
|
34 |
endif() |
8104
09c38cdf380d
show console on win when debugging to see frontend messages
koda
parents:
8093
diff
changeset
|
35 |
|
4252 | 36 |
#detect Mercurial revision (if present) |
8146 | 37 |
if(NOT NOREVISION) |
7709
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
38 |
set(default_build_type "DEBUG") |
8090
38d9cc60b14c
cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents:
8089
diff
changeset
|
39 |
set(version_suffix "-development_version") |
38d9cc60b14c
cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents:
8089
diff
changeset
|
40 |
set(HW_DEV true) |
8146 | 41 |
find_program(HGCOMMAND hg) |
42 |
if(HGCOMMAND AND (EXISTS ${CMAKE_SOURCE_DIR}/.hg)) |
|
8090
38d9cc60b14c
cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents:
8089
diff
changeset
|
43 |
execute_process(COMMAND ${HGCOMMAND} identify -in |
38d9cc60b14c
cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents:
8089
diff
changeset
|
44 |
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} |
38d9cc60b14c
cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents:
8089
diff
changeset
|
45 |
OUTPUT_VARIABLE internal_version |
38d9cc60b14c
cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents:
8089
diff
changeset
|
46 |
ERROR_QUIET |
38d9cc60b14c
cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents:
8089
diff
changeset
|
47 |
) |
38d9cc60b14c
cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents:
8089
diff
changeset
|
48 |
#check local repo status |
8146 | 49 |
string(REGEX REPLACE "[^+]" "" HGCHANGED ${internal_version}) |
8090
38d9cc60b14c
cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents:
8089
diff
changeset
|
50 |
|
8146 | 51 |
string(REGEX REPLACE "[0-9a-zA-Z]+(.*) ([0-9]+)(.*)" "\\2" revision_number ${internal_version}) |
52 |
string(REGEX REPLACE "([0-9a-zA-Z]+)(.*) [0-9]+(.*)" "\\1" revision_hash ${internal_version}) |
|
8090
38d9cc60b14c
cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents:
8089
diff
changeset
|
53 |
|
8146 | 54 |
message(STATUS "Building revision ${revision_number} from hash ${revision_hash} ${HGCHANGED}") |
55 |
if(HGCHANGED) |
|
8093
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
56 |
MESSAGE(WARNING "Notice: you have uncommitted changes in your repository") |
8146 | 57 |
endif() |
8090
38d9cc60b14c
cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents:
8089
diff
changeset
|
58 |
set(version_suffix "-${revision_number}${HGCHANGED}") |
8146 | 59 |
endif() |
60 |
else(NOT NOREVISION) |
|
7709
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
61 |
set(default_build_type "RELEASE") |
8090
38d9cc60b14c
cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents:
8089
diff
changeset
|
62 |
set(HWDEV false) |
8146 | 63 |
message(STATUS "Building distributable version") |
64 |
endif(NOT NOREVISION) |
|
2672 | 65 |
|
1107 | 66 |
|
5405 | 67 |
#versioning |
5407 | 68 |
set(CPACK_PACKAGE_VERSION_MAJOR 0) |
69 |
set(CPACK_PACKAGE_VERSION_MINOR 9) |
|
7960 | 70 |
set(CPACK_PACKAGE_VERSION_PATCH 19${version_suffix}) |
71 |
set(HEDGEWARS_PROTO_VER 44) |
|
5407 | 72 |
set(HEDGEWARS_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}") |
5405 | 73 |
|
907 | 74 |
|
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:
8313
diff
changeset
|
75 |
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin) |
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:
8313
diff
changeset
|
76 |
set(LIBRARY_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin) |
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:
8313
diff
changeset
|
77 |
|
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:
8313
diff
changeset
|
78 |
if(UNIX AND NOT APPLE) |
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:
8313
diff
changeset
|
79 |
set(target_binary_install_dir "bin") |
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:
8313
diff
changeset
|
80 |
set(target_library_install_dir "lib") |
8333
416cb5e5a405
move DATA_INSTALL_DIR to the configurable options section
koda
parents:
8331
diff
changeset
|
81 |
set(SHAREPATH "${DATA_INSTALL_DIR}/") |
7718
97ba379164ec
use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents:
7709
diff
changeset
|
82 |
else() |
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:
8313
diff
changeset
|
83 |
set(target_binary_install_dir "./") |
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:
8313
diff
changeset
|
84 |
|
8317
ec9f94ab2737
remove the CROSSAPPLE option until a better solution is found
koda
parents:
8316
diff
changeset
|
85 |
if(APPLE) |
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:
8313
diff
changeset
|
86 |
set(CMAKE_INSTALL_PREFIX "Hedgewars.app/Contents/MacOS/") |
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:
8313
diff
changeset
|
87 |
set(SHAREPATH "../Resources/") |
8317
ec9f94ab2737
remove the CROSSAPPLE option until a better solution is found
koda
parents:
8316
diff
changeset
|
88 |
set(target_library_install_dir "../Frameworks/") |
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:
8313
diff
changeset
|
89 |
else() |
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:
8313
diff
changeset
|
90 |
if(WIN32) |
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:
8313
diff
changeset
|
91 |
set(target_library_install_dir "./") |
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:
8313
diff
changeset
|
92 |
set(SHAREPATH "./") |
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:
8313
diff
changeset
|
93 |
set(CMAKE_PREFIX_PATH "${CMAKE_SOURCE_DIR}/misc/winutils/") |
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:
8313
diff
changeset
|
94 |
link_directories("${EXECUTABLE_OUTPUT_PATH}" "${CMAKE_SOURCE_DIR}/misc/winutils/bin") |
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:
8313
diff
changeset
|
95 |
endif(WIN32) |
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:
8313
diff
changeset
|
96 |
endif() |
7256 | 97 |
endif() |
98 |
||
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:
8313
diff
changeset
|
99 |
|
7256 | 100 |
if(APPLE) |
101 |
set(CMAKE_FIND_FRAMEWORK "FIRST") |
|
3697 | 102 |
|
7220 | 103 |
#what system are we building for |
104 |
set(minimum_macosx_version $ENV{MACOSX_DEPLOYMENT_TARGET}) |
|
3697 | 105 |
|
7220 | 106 |
#detect on which system we are: if sw_vers cannot be found for any reason (re)use minimum_macosx_version |
107 |
find_program(sw_vers sw_vers) |
|
108 |
if(sw_vers) |
|
8093
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
109 |
execute_process(COMMAND ${sw_vers} "-productVersion" |
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
110 |
OUTPUT_VARIABLE current_macosx_version |
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
111 |
OUTPUT_STRIP_TRAILING_WHITESPACE) |
7220 | 112 |
string(REGEX REPLACE "([0-9]+.[0-9]+).[0-9]+" "\\1" current_macosx_version ${current_macosx_version}) |
8093
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
113 |
else() |
7220 | 114 |
if(NOT minimum_macosx_version) |
115 |
message(FATAL_ERROR "sw_vers not found! Need explicit MACOSX_DEPLOYMENT_TARGET variable set") |
|
7114
e0110a1229b7
add NOPNG to cmake to explicitly disable PNG dependency
koda
parents:
7113
diff
changeset
|
116 |
else() |
8093
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
117 |
message(WARNING "sw_vers not found! Fallback to MACOSX_DEPLOYMENT_TARGET variable") |
7220 | 118 |
set(current_macosx_version ${minimum_macosx_version}) |
119 |
endif() |
|
120 |
endif() |
|
2641 | 121 |
|
7220 | 122 |
#if nothing is set, we deploy only for the current system |
123 |
if(NOT minimum_macosx_version) |
|
124 |
set(minimum_macosx_version ${current_macosx_version}) |
|
125 |
endif() |
|
2641 | 126 |
|
8093
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
127 |
#lower systems don't have enough processing power anyway |
8279
c03d64969112
less linking needed, raise minimum_osx_version when videorec is enabled
koda
parents:
8272
diff
changeset
|
128 |
if (minimum_macosx_version VERSION_LESS "10.4") |
7220 | 129 |
message(FATAL_ERROR "Hedgewars is not supported on Mac OS X pre-10.4") |
130 |
endif() |
|
2929 | 131 |
|
7220 | 132 |
#workaround for http://playcontrol.net/ewing/jibberjabber/big_behind-the-scenes_chang.html#SDL_mixer (Update 2) |
8279
c03d64969112
less linking needed, raise minimum_osx_version when videorec is enabled
koda
parents:
8272
diff
changeset
|
133 |
if(current_macosx_version VERSION_EQUAL "10.4") |
7220 | 134 |
find_package(SDL_mixer REQUIRED) |
135 |
set(DYLIB_SMPEG "-dylib_file @loader_path/Frameworks/smpeg.framework/Versions/A/smpeg:${SDLMIXER_LIBRARY}/Versions/A/Frameworks/smpeg.framework/Versions/A/smpeg") |
|
136 |
set(DYLIB_MIKMOD "-dylib_file @loader_path/Frameworks/mikmod.framework/Versions/A/mikmod:${SDLMIXER_LIBRARY}/Versions/A/Frameworks/mikmod.framework/Versions/A/mikmod") |
|
8348 | 137 |
set(CMAKE_C_FLAGS "${DYLIB_SMPEG} ${DYLIB_MIKMOD}") |
8347 | 138 |
list(APPEND pascal_flags "-k${DYLIB_SMPEG}" "-k${DYLIB_MIKMOD}") |
7220 | 139 |
endif() |
7114
e0110a1229b7
add NOPNG to cmake to explicitly disable PNG dependency
koda
parents:
7113
diff
changeset
|
140 |
|
7220 | 141 |
#CMAKE_OSX_ARCHITECTURES and CMAKE_OSX_SYSROOT need to be set for universal binary and correct linking |
142 |
if(NOT CMAKE_OSX_ARCHITECTURES) |
|
8279
c03d64969112
less linking needed, raise minimum_osx_version when videorec is enabled
koda
parents:
8272
diff
changeset
|
143 |
if(current_macosx_version VERSION_LESS "10.6") |
7220 | 144 |
if(${CMAKE_SYSTEM_PROCESSOR} MATCHES "powerpc*") |
145 |
set(CMAKE_OSX_ARCHITECTURES "ppc7400") |
|
146 |
else() |
|
147 |
set(CMAKE_OSX_ARCHITECTURES "i386") |
|
148 |
endif() |
|
149 |
else() |
|
150 |
set(CMAKE_OSX_ARCHITECTURES "x86_64") |
|
151 |
endif() |
|
152 |
endif() |
|
5053 | 153 |
|
7220 | 154 |
#CMAKE_OSX_SYSROOT is set at the system version we are supposed to build on |
155 |
#we need to provide the correct one when host and target differ |
|
8279
c03d64969112
less linking needed, raise minimum_osx_version when videorec is enabled
koda
parents:
8272
diff
changeset
|
156 |
if(NOT ${minimum_macosx_version} VERSION_EQUAL ${current_macosx_version}) |
c03d64969112
less linking needed, raise minimum_osx_version when videorec is enabled
koda
parents:
8272
diff
changeset
|
157 |
if(minimum_macosx_version VERSION_EQUAL "10.4") |
7220 | 158 |
set(CMAKE_OSX_SYSROOT "/Developer/SDKs/MacOSX10.4u.sdk/") |
159 |
set(CMAKE_C_COMPILER "gcc-4.0") |
|
160 |
set(CMAKE_CXX_COMPILER "g++-4.0") |
|
161 |
else() |
|
162 |
string(REGEX REPLACE "([0-9]+.[0-9]+).[0-9]+" "\\1" sdk_version ${minimum_macosx_version}) |
|
163 |
set(CMAKE_OSX_SYSROOT "/Developer/SDKs/MacOSX${sdk_version}.sdk/") |
|
164 |
endif() |
|
165 |
endif() |
|
2641 | 166 |
|
7220 | 167 |
#add user framework directory, other paths can be passed via FPFLAGS |
8347 | 168 |
list(APPEND pascal_flags "-Ff~/Library/Frameworks") |
7220 | 169 |
#set deployment target |
8347 | 170 |
list(APPEND pascal_flags "-k-macosx_version_min" "-k${minimum_macosx_version}" "-XR${CMAKE_OSX_SYSROOT}") |
5188 | 171 |
|
8279
c03d64969112
less linking needed, raise minimum_osx_version when videorec is enabled
koda
parents:
8272
diff
changeset
|
172 |
#silly libav that always brings in VideoDecoderAcceleration, avaible only from 10.6.3 |
c03d64969112
less linking needed, raise minimum_osx_version when videorec is enabled
koda
parents:
8272
diff
changeset
|
173 |
if(NOT NOVIDEOREC AND ${minimum_macosx_version} VERSION_LESS "10.6") |
c03d64969112
less linking needed, raise minimum_osx_version when videorec is enabled
koda
parents:
8272
diff
changeset
|
174 |
set(WARNING "Video recording support before OS X 10.6 is experimental") |
c03d64969112
less linking needed, raise minimum_osx_version when videorec is enabled
koda
parents:
8272
diff
changeset
|
175 |
endif() |
2015 | 176 |
endif(APPLE) |
177 |
||
2406 | 178 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
179 |
#when build type is not specified, assume Debug/Release according to build version information |
7709
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
180 |
if (CMAKE_BUILD_TYPE) |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
181 |
string (TOUPPER ${CMAKE_BUILD_TYPE} CMAKE_BUILD_TYPE) |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
182 |
if ( NOT( (CMAKE_BUILD_TYPE MATCHES "RELEASE") OR (CMAKE_BUILD_TYPE MATCHES "DEBUG") ) ) |
8279
c03d64969112
less linking needed, raise minimum_osx_version when videorec is enabled
koda
parents:
8272
diff
changeset
|
183 |
set (CMAKE_BUILD_TYPE ${default_build_type} CACHE STRING "Choose the build type, options are: Debug Release." FORCE) |
7709
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
184 |
message (STATUS "Unknown build type, using default (${default_build_type})") |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
185 |
endif () |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
186 |
else (CMAKE_BUILD_TYPE) |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
187 |
set (CMAKE_BUILD_TYPE ${default_build_type} CACHE STRING "Choose the build type, options are: Debug Release." FORCE) |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
188 |
endif (CMAKE_BUILD_TYPE) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
189 |
|
7944 | 190 |
#set default flags values for all projects (unless MINIMAL_FLAGS is true) |
8347 | 191 |
if(NOT ${MINIMAL_FLAGS}) |
8348 | 192 |
set(CMAKE_C_FLAGS "-pipe ${CMAKE_C_FLAGS}") |
193 |
set(CMAKE_C_FLAGS_RELEASE "-w -Os -fomit-frame-pointer ${CMAKE_C_FLAGS_RELEASE}") |
|
194 |
set(CMAKE_C_FLAGS_DEBUG "-Wall -O0 -g -DDEBUG ${CMAKE_C_FLAGS_DEBUG}") |
|
7944 | 195 |
set(CMAKE_CXX_FLAGS ${CMAKE_C_FLAGS}) |
196 |
set(CMAKE_CXX_FLAGS_RELEASE ${CMAKE_C_FLAGS_RELEASE}) |
|
197 |
set(CMAKE_CXX_FLAGS_DEBUG ${CMAKE_C_FLAGS_DEBUG}) |
|
198 |
else() |
|
199 |
#CMake adds a lot of additional configuration flags, so let's clear them up |
|
200 |
set(CMAKE_C_FLAGS_RELEASE "") |
|
201 |
set(CMAKE_C_FLAGS_DEBUG "-Wall -DDEBUG") |
|
202 |
set(CMAKE_CXX_FLAGS_RELEASE "") |
|
203 |
set(CMAKE_CXX_FLAGS_DEBUG "-Wall -DDEBUG") |
|
204 |
endif() |
|
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
205 |
|
7397
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
206 |
#parse additional parameters |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
207 |
if(FPFLAGS OR GHFLAGS) |
8279
c03d64969112
less linking needed, raise minimum_osx_version when videorec is enabled
koda
parents:
8272
diff
changeset
|
208 |
set(cmake_version "${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.${CMAKE_PATCH_VERSION}") |
c03d64969112
less linking needed, raise minimum_osx_version when videorec is enabled
koda
parents:
8272
diff
changeset
|
209 |
if(cmake_version VERSION_LESS "2.8") |
c03d64969112
less linking needed, raise minimum_osx_version when videorec is enabled
koda
parents:
8272
diff
changeset
|
210 |
message(WARNING "FPFLAGS and GHFLAGS are available only when using CMake >= 2.8") |
7397
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
211 |
else() |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
212 |
separate_arguments(fpflags_parsed UNIX_COMMAND ${FPFLAGS}) |
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
213 |
separate_arguments(ghflags_parsed UNIX_COMMAND ${GHFLAGS}) |
7397
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
214 |
endif() |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
215 |
endif() |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
216 |
|
8555 | 217 |
list(APPEND pascal_flags ${fpflags_parsed} # user flags |
8283 | 218 |
"-vm4079,4080,4081" # fpc output format |
219 |
"-B" # compile all units |
|
220 |
"-FE${PROJECT_BINARY_DIR}/bin" # fpc output directory |
|
221 |
"-Fl${PROJECT_BINARY_DIR}/bin" # fpc linking directory |
|
222 |
"-Cs2000000" # stack size |
|
223 |
"-vewnq" # fpc output verbosity |
|
224 |
"-dDEBUGFILE" # macro for engine output |
|
225 |
) |
|
8347 | 226 |
list(APPEND haskell_flags "-O2" ${ghflags_parsed}) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
227 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
228 |
#get BUILD_TYPE and enable/disable optimisation |
8279
c03d64969112
less linking needed, raise minimum_osx_version when videorec is enabled
koda
parents:
8272
diff
changeset
|
229 |
message(STATUS "Using ${CMAKE_BUILD_TYPE} configuration") |
7709
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
230 |
if(CMAKE_BUILD_TYPE MATCHES "DEBUG") |
8555 | 231 |
list(APPEND pascal_flags "-O-" # disable all optimisations |
232 |
"-g" # enable debug symbols |
|
233 |
"-gl" # add line info to bt |
|
234 |
"-gv" # allow valgrind |
|
235 |
) |
|
8347 | 236 |
list(APPEND haskell_flags "-Wall" "-debug" "-dcore-lint" "-fno-warn-unused-do-bind") |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
237 |
else() |
8555 | 238 |
list(APPEND pascal_flags "-Os" # optimise for size |
239 |
"-Xs" # strip binary |
|
240 |
"-Si" # turn on inlining |
|
241 |
) |
|
8347 | 242 |
list(APPEND haskell_flags "-w" "-fno-warn-unused-do-bind") |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
243 |
endif() |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
244 |
|
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
245 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
246 |
#server discovery |
7223 | 247 |
if(NOT NOSERVER) |
7220 | 248 |
if(GHC) |
249 |
set(ghc_executable ${GHC}) |
|
250 |
else() |
|
251 |
find_program(ghc_executable ghc) |
|
252 |
endif() |
|
5053 | 253 |
|
7220 | 254 |
if(ghc_executable) |
255 |
set(HAVE_NETSERVER true) |
|
256 |
add_subdirectory(gameServer) |
|
7718
97ba379164ec
use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents:
7709
diff
changeset
|
257 |
message(STATUS "Found GHC: ${ghc_executable}") |
7220 | 258 |
else() |
8093
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
259 |
message(WARNING "Could NOT find GHC, server will not be built") |
7220 | 260 |
set(HAVE_NETSERVER false) |
261 |
endif() |
|
7223 | 262 |
else() |
263 |
message(STATUS "Server will not be built per user request") |
|
7220 | 264 |
set(HAVE_NETSERVER false) |
7223 | 265 |
endif() |
1415
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1370
diff
changeset
|
266 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
267 |
|
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
268 |
#lua discovery |
7031
d5ea24399a48
when Lua is not found, fallback to compiling the one that comes bundled in our sources
koda
parents:
7030
diff
changeset
|
269 |
find_package(Lua) |
7233
225179f64fd8
LUA_FOUND should surely be set only if the system lua was found.
nemo
parents:
7226
diff
changeset
|
270 |
if(LUA_FOUND) |
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
|
271 |
message(STATUS "Found LUA: ${LUA_DEFAULT}") |
7223 | 272 |
else() |
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
|
273 |
message(STATUS "LUA will be provided by the bundled sources") |
7220 | 274 |
add_subdirectory(misc/liblua) |
8093
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
275 |
#linking with liblua.a requires system readline |
8347 | 276 |
list(APPEND pascal_flags "-k${EXECUTABLE_OUTPUT_PATH}/lib${LUA_LIBRARY}.a" "-k-lreadline") |
7031
d5ea24399a48
when Lua is not found, fallback to compiling the one that comes bundled in our sources
koda
parents:
7030
diff
changeset
|
277 |
endif() |
7223 | 278 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
279 |
|
8544
d610e692e2f6
perform a version check before including physfs (maybe there is a better place for this?) and allow overriding automagic search
koda
parents:
8540
diff
changeset
|
280 |
#physfs discovery |
8549
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
281 |
if (${SYSTEM_PHYSFS}) |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
282 |
if (NOT PHYSFS_LIBRARY OR NOT PHYSFS_INCLUDE_DIR) |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
283 |
find_package(PhysFS) |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
284 |
endif() |
8544
d610e692e2f6
perform a version check before including physfs (maybe there is a better place for this?) and allow overriding automagic search
koda
parents:
8540
diff
changeset
|
285 |
|
8549
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
286 |
find_file(physfs_h physfs.h ${PHYSFS_INCLUDE_DIR}) |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
287 |
if(physfs_h) |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
288 |
file(STRINGS ${physfs_h} physfs_majorversion REGEX "PHYSFS_VER_MAJOR[\t' ']+[0-9]+") |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
289 |
file(STRINGS ${physfs_h} physfs_minorversion REGEX "PHYSFS_VER_MINOR[\t' ']+[0-9]+") |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
290 |
file(STRINGS ${physfs_h} physfs_patchversion REGEX "PHYSFS_VER_PATCH[\t' ']+[0-9]+") |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
291 |
string(REGEX MATCH "([0-9]+)" physfs_majorversion "${physfs_majorversion}") |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
292 |
string(REGEX MATCH "([0-9]+)" physfs_minorversion "${physfs_minorversion}") |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
293 |
string(REGEX MATCH "([0-9]+)" physfs_patchversion "${physfs_patchversion}") |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
294 |
set(physfs_detected_ver "${physfs_majorversion}.${physfs_minorversion}.${physfs_patchversion}") |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
295 |
|
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
296 |
if (physfs_detected_ver VERSION_LESS "2.1.0") |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
297 |
message(FATAL_ERROR "PhysFS version is too old (dected ${physfs_detected_ver}, required 2.1.0)") |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
298 |
set(physfs_too_old true) |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
299 |
endif() |
8544
d610e692e2f6
perform a version check before including physfs (maybe there is a better place for this?) and allow overriding automagic search
koda
parents:
8540
diff
changeset
|
300 |
endif() |
d610e692e2f6
perform a version check before including physfs (maybe there is a better place for this?) and allow overriding automagic search
koda
parents:
8540
diff
changeset
|
301 |
|
8549
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
302 |
if (NOT PHYSFS_LIBRARY OR NOT PHYSFS_INCLUDE_DIR) |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
303 |
message(FATAL_ERROR "Missing PhysFS! Rerun cmake with -DPHYSFS_SYSTEM=off to build the internal version") |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
304 |
endif() |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
305 |
else() |
8528 | 306 |
message(STATUS "PhysFS will be provided by the bundled sources") |
8549
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
307 |
set(physfs_output_name "hw_physfs") |
8528 | 308 |
add_subdirectory(misc/libphysfs) |
8558 | 309 |
#-XLA is a beta fpc flag that renames libraries before passing them to the linker |
310 |
#we also have to pass PHYSFS_INTERNAL to satisfy windows runtime requirements |
|
311 |
#(should be harmless on other platforms) |
|
312 |
list(APPEND pascal_flags "-XLAphysfs=${physfs_output_name}" "-dPHYSFS_INTERNAL") |
|
8528 | 313 |
endif() |
8549
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
314 |
|
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
315 |
# |
8528 | 316 |
add_subdirectory(misc/libphyslayer) |
8283 | 317 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
318 |
#main engine |
184 | 319 |
add_subdirectory(hedgewars) |
5053 | 320 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
321 |
#Android related build scripts |
6812
929b467c7277
fixed some typo's. LUA_LIBRARY now points to the right name, regardless of the host machine. Running cmake after a bad attempt (ie forgot to add paths to PATH) now works rather than having to clean the cache
Xeli
parents:
6605
diff
changeset
|
322 |
if(ANDROID) |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
323 |
#run cmake -DANDROID=1 to enable this |
7220 | 324 |
add_subdirectory(project_files/Android-build) |
6025
cac1d5601d7c
reviewed the build system and parts of the previous merge, performed some code cleanup
koda
parents:
6023
diff
changeset
|
325 |
endif() |
5381
8f95038f3f75
Removed protocol check, using CMake now to setup the building scripts using Templates/* removed old scripts
Xeli
parents:
5223
diff
changeset
|
326 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
327 |
#TODO: when ANDROID, BUILD_ENGINE_LIBRARY should be set |
8082
675372256a01
lotsa hackery to get frontend somehow link libengine...
koda
parents:
8078
diff
changeset
|
328 |
if(NOT ANDROID) |
7220 | 329 |
add_subdirectory(bin) |
330 |
add_subdirectory(QTfrontend) |
|
331 |
add_subdirectory(share) |
|
332 |
add_subdirectory(tools) |
|
3515 | 333 |
endif() |
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
334 |
|
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
335 |
|
5405 | 336 |
# CPack variables |
3338
dee9beba85cc
patch by raptor (polished by me) to allow tiger/xcode24 compilation
koda
parents:
3306
diff
changeset
|
337 |
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Hedgewars, a free turn-based strategy") |
2827 | 338 |
set(CPACK_PACKAGE_VENDOR "Hedgewars Project") |
907 | 339 |
set(CPACK_PACKAGE_FILE_NAME "hedgewars-${HEDGEWARS_VERSION}") |
340 |
set(CPACK_SOURCE_PACKAGE_FILE_NAME "hedgewars-src-${HEDGEWARS_VERSION}") |
|
1459 | 341 |
set(CPACK_SOURCE_GENERATOR "TBZ2") |
1173
70b0acd4548c
Revert accidental nsis installer generator regression
unc0rr
parents:
1159
diff
changeset
|
342 |
set(CPACK_PACKAGE_EXECUTABLES "hedgewars" "hedgewars") |
458 | 343 |
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/COPYING") |
907 | 344 |
set(CPACK_PACKAGE_INSTALL_DIRECTORY "Hedgewars ${HEDGEWARS_VERSION}") |
184 | 345 |
|
346 |
if(WIN32 AND NOT UNIX) |
|
7220 | 347 |
set(CPACK_NSIS_DISPLAY_NAME "Hedgewars") |
348 |
set(CPACK_NSIS_HELP_LINK "http://www.hedgewars.org/") |
|
349 |
set(CPACK_NSIS_URL_INFO_ABOUT "http://www.hedgewars.org/") |
|
350 |
set(CPACK_NSIS_CONTACT "unC0Rr@gmail.com") |
|
351 |
set(CPACK_NSIS_MODIFY_PATH OFF) |
|
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:
8313
diff
changeset
|
352 |
set(CPACK_NSIS_EXECUTABLES_DIRECTORY "${target_binary_install_dir}") |
7220 | 353 |
set(CPACK_GENERATOR "ZIP;NSIS") |
354 |
set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "hedgewars") |
|
184 | 355 |
else(WIN32 AND NOT UNIX) |
7220 | 356 |
set(CPACK_STRIP_FILES "bin/hedgewars;bin/hwengine") |
184 | 357 |
endif(WIN32 AND NOT UNIX) |
358 |
||
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
359 |
set(CPACK_SOURCE_IGNORE_FILES |
7220 | 360 |
"~" |
361 |
"\\\\.hg" |
|
362 |
"\\\\.svn" |
|
363 |
"\\\\.exe$" |
|
364 |
"\\\\.a$" |
|
365 |
"\\\\.dll$" |
|
366 |
"\\\\.xcf$" |
|
367 |
"\\\\.cxx$" |
|
368 |
"\\\\.db$" |
|
369 |
"\\\\.dof$" |
|
370 |
"\\\\.layout$" |
|
371 |
"\\\\.zip$" |
|
372 |
"\\\\.gz$" |
|
373 |
"\\\\.bz2$" |
|
374 |
"\\\\.tmp$" |
|
375 |
"\\\\.core$" |
|
376 |
"\\\\.sh$" |
|
377 |
"\\\\.sifz$" |
|
378 |
"\\\\.svg$" |
|
379 |
"\\\\.svgz$" |
|
380 |
"\\\\.ppu$" |
|
381 |
"\\\\.psd$" |
|
382 |
"\\\\.o$" |
|
383 |
"Makefile" |
|
384 |
"Doxyfile" |
|
385 |
"CMakeFiles" |
|
386 |
"debug" |
|
387 |
"release$" |
|
388 |
"Debug$" |
|
389 |
"Release$" |
|
390 |
"proto\\\\.inc$" |
|
391 |
"hwconsts\\\\.cpp$" |
|
392 |
"playlist\\\\.inc$" |
|
393 |
"CPack" |
|
394 |
"cmake_install\\\\.cmake$" |
|
395 |
"config\\\\.inc$" |
|
396 |
"hwengine\\\\.desktop$" |
|
397 |
"CMakeCache\\\\.txt$" |
|
398 |
# "^${CMAKE_CURRENT_SOURCE_DIR}/misc/libopenalbridge" |
|
399 |
# "^${CMAKE_CURRENT_SOURCE_DIR}/misc/libfreetype" |
|
400 |
"^${CMAKE_CURRENT_SOURCE_DIR}/misc/liblua" |
|
401 |
# "^${CMAKE_CURRENT_SOURCE_DIR}/misc/libtremor" |
|
402 |
"^${CMAKE_CURRENT_SOURCE_DIR}/project_files/HedgewarsMobile/" |
|
403 |
"^${CMAKE_CURRENT_SOURCE_DIR}/bin/[a-z]" |
|
404 |
"^${CMAKE_CURRENT_SOURCE_DIR}/tools/templates" |
|
405 |
"^${CMAKE_CURRENT_SOURCE_DIR}/doc" |
|
406 |
"^${CMAKE_CURRENT_SOURCE_DIR}/templates" |
|
407 |
"^${CMAKE_CURRENT_SOURCE_DIR}/Graphics" |
|
408 |
"^${CMAKE_CURRENT_SOURCE_DIR}/realtest" |
|
409 |
"^${CMAKE_CURRENT_SOURCE_DIR}/tmp" |
|
410 |
"^${CMAKE_CURRENT_SOURCE_DIR}/utils" |
|
411 |
"^${CMAKE_CURRENT_SOURCE_DIR}/share/hedgewars/Data/Maps/test" |
|
412 |
"^${CMAKE_CURRENT_SOURCE_DIR}/share/hedgewars/Data/Themes/ethereal" |
|
413 |
"^${CMAKE_CURRENT_SOURCE_DIR}/install_manifest.txt" |
|
414 |
"^${CMAKE_CURRENT_SOURCE_DIR}/CMakeCache.txt" |
|
415 |
"^${CMAKE_CURRENT_SOURCE_DIR}/hedgewars\\\\." |
|
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
416 |
) |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
417 |
|
184 | 418 |
include(CPack) |
5407 | 419 |