author | koda |
Sat, 08 Dec 2012 15:38:16 +0100 | |
branch | flibqtfrontend |
changeset 8273 | 3717cbf47daf |
parent 8146 | 1fba650c2aa4 |
child 8278 | 9cdfcb5b7ddd |
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 |
|
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
|
22 |
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
|
23 |
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
|
24 |
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
|
25 |
option(CROSSAPPLE "Enable OSX when not on OSX [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(MINIMAL_FLAGS "Respect system flags as much as possible [default: off]" OFF) |
1107 | 27 |
|
8104
09c38cdf380d
show console on win when debugging to see frontend messages
koda
parents:
8093
diff
changeset
|
28 |
|
4252 | 29 |
#detect Mercurial revision (if present) |
8146 | 30 |
if(NOT NOREVISION) |
7709
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
31 |
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
|
32 |
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
|
33 |
set(HW_DEV true) |
8146 | 34 |
find_program(HGCOMMAND hg) |
35 |
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
|
36 |
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
|
37 |
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
|
38 |
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
|
39 |
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
|
40 |
) |
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
|
41 |
#check local repo status |
8146 | 42 |
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
|
43 |
|
8146 | 44 |
string(REGEX REPLACE "[0-9a-zA-Z]+(.*) ([0-9]+)(.*)" "\\2" revision_number ${internal_version}) |
45 |
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
|
46 |
|
8146 | 47 |
message(STATUS "Building revision ${revision_number} from hash ${revision_hash} ${HGCHANGED}") |
48 |
if(HGCHANGED) |
|
8093
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
49 |
MESSAGE(WARNING "Notice: you have uncommitted changes in your repository") |
8146 | 50 |
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
|
51 |
set(version_suffix "-${revision_number}${HGCHANGED}") |
8146 | 52 |
endif() |
53 |
else(NOT NOREVISION) |
|
7709
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
54 |
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
|
55 |
set(HWDEV false) |
8146 | 56 |
message(STATUS "Building distributable version") |
57 |
endif(NOT NOREVISION) |
|
2672 | 58 |
|
1107 | 59 |
|
5405 | 60 |
#versioning |
5407 | 61 |
set(CPACK_PACKAGE_VERSION_MAJOR 0) |
62 |
set(CPACK_PACKAGE_VERSION_MINOR 9) |
|
7960 | 63 |
set(CPACK_PACKAGE_VERSION_PATCH 19${version_suffix}) |
64 |
set(HEDGEWARS_PROTO_VER 44) |
|
5407 | 65 |
set(HEDGEWARS_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}") |
5405 | 66 |
|
907 | 67 |
|
5405 | 68 |
#bundle .app setup |
7256 | 69 |
if(APPLE OR CROSSAPPLE) |
7220 | 70 |
#paths for creating the bundle |
71 |
set(bundle_name Hedgewars.app) |
|
72 |
set(frameworks_dir ${bundle_name}/Contents/Frameworks/) |
|
73 |
set(CMAKE_INSTALL_PREFIX ${bundle_name}/Contents/MacOS/) |
|
74 |
set(DATA_INSTALL_DIR "../Resources/") |
|
75 |
set(target_dir ".") |
|
7718
97ba379164ec
use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents:
7709
diff
changeset
|
76 |
else() |
97ba379164ec
use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents:
7709
diff
changeset
|
77 |
set(target_dir "bin") |
7256 | 78 |
endif() |
79 |
||
80 |
if(APPLE) |
|
81 |
set(CMAKE_FIND_FRAMEWORK "FIRST") |
|
3697 | 82 |
|
7220 | 83 |
#what system are we building for |
84 |
set(minimum_macosx_version $ENV{MACOSX_DEPLOYMENT_TARGET}) |
|
3697 | 85 |
|
7220 | 86 |
#detect on which system we are: if sw_vers cannot be found for any reason (re)use minimum_macosx_version |
87 |
find_program(sw_vers sw_vers) |
|
88 |
if(sw_vers) |
|
8093
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
89 |
execute_process(COMMAND ${sw_vers} "-productVersion" |
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
90 |
OUTPUT_VARIABLE current_macosx_version |
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
91 |
OUTPUT_STRIP_TRAILING_WHITESPACE) |
7220 | 92 |
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
|
93 |
else() |
7220 | 94 |
if(NOT minimum_macosx_version) |
95 |
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
|
96 |
else() |
8093
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
97 |
message(WARNING "sw_vers not found! Fallback to MACOSX_DEPLOYMENT_TARGET variable") |
7220 | 98 |
set(current_macosx_version ${minimum_macosx_version}) |
99 |
endif() |
|
100 |
endif() |
|
2641 | 101 |
|
7220 | 102 |
#if nothing is set, we deploy only for the current system |
103 |
if(NOT minimum_macosx_version) |
|
104 |
set(minimum_macosx_version ${current_macosx_version}) |
|
105 |
endif() |
|
2641 | 106 |
|
8093
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
107 |
#lower systems don't have enough processing power anyway |
7220 | 108 |
if (minimum_macosx_version LESS "10.4") |
109 |
message(FATAL_ERROR "Hedgewars is not supported on Mac OS X pre-10.4") |
|
110 |
endif() |
|
2929 | 111 |
|
7220 | 112 |
#workaround for http://playcontrol.net/ewing/jibberjabber/big_behind-the-scenes_chang.html#SDL_mixer (Update 2) |
113 |
if(current_macosx_version MATCHES "10.4") |
|
114 |
find_package(SDL_mixer REQUIRED) |
|
115 |
set(DYLIB_SMPEG "-dylib_file @loader_path/Frameworks/smpeg.framework/Versions/A/smpeg:${SDLMIXER_LIBRARY}/Versions/A/Frameworks/smpeg.framework/Versions/A/smpeg") |
|
116 |
set(DYLIB_MIKMOD "-dylib_file @loader_path/Frameworks/mikmod.framework/Versions/A/mikmod:${SDLMIXER_LIBRARY}/Versions/A/Frameworks/mikmod.framework/Versions/A/mikmod") |
|
117 |
set(pascal_flags "-k${DYLIB_SMPEG}" "-k${DYLIB_MIKMOD}" ${pascal_flags}) |
|
118 |
set(CMAKE_C_FLAGS "${DYLIB_SMPEG}" "${DYLIB_MIKMOD}" ${CMAKE_C_FLAGS}) |
|
119 |
endif() |
|
7114
e0110a1229b7
add NOPNG to cmake to explicitly disable PNG dependency
koda
parents:
7113
diff
changeset
|
120 |
|
7220 | 121 |
#CMAKE_OSX_ARCHITECTURES and CMAKE_OSX_SYSROOT need to be set for universal binary and correct linking |
122 |
if(NOT CMAKE_OSX_ARCHITECTURES) |
|
123 |
if(current_macosx_version LESS "10.6") |
|
124 |
if(${CMAKE_SYSTEM_PROCESSOR} MATCHES "powerpc*") |
|
125 |
set(CMAKE_OSX_ARCHITECTURES "ppc7400") |
|
126 |
else() |
|
127 |
set(CMAKE_OSX_ARCHITECTURES "i386") |
|
128 |
endif() |
|
129 |
else() |
|
130 |
set(CMAKE_OSX_ARCHITECTURES "x86_64") |
|
131 |
endif() |
|
132 |
endif() |
|
5053 | 133 |
|
7220 | 134 |
#CMAKE_OSX_SYSROOT is set at the system version we are supposed to build on |
135 |
#we need to provide the correct one when host and target differ |
|
136 |
if(NOT ${minimum_macosx_version} MATCHES ${current_macosx_version}) |
|
137 |
if(minimum_macosx_version MATCHES "10.4") |
|
138 |
set(CMAKE_OSX_SYSROOT "/Developer/SDKs/MacOSX10.4u.sdk/") |
|
139 |
set(CMAKE_C_COMPILER "gcc-4.0") |
|
140 |
set(CMAKE_CXX_COMPILER "g++-4.0") |
|
141 |
else() |
|
142 |
string(REGEX REPLACE "([0-9]+.[0-9]+).[0-9]+" "\\1" sdk_version ${minimum_macosx_version}) |
|
143 |
set(CMAKE_OSX_SYSROOT "/Developer/SDKs/MacOSX${sdk_version}.sdk/") |
|
144 |
endif() |
|
145 |
endif() |
|
2641 | 146 |
|
7220 | 147 |
#add user framework directory, other paths can be passed via FPFLAGS |
148 |
set(pascal_flags "-Ff~/Library/Frameworks" ${pascal_flags}) |
|
149 |
#set deployment target |
|
150 |
set(pascal_flags "-k-macosx_version_min" "-k${minimum_macosx_version}" "-XR${CMAKE_OSX_SYSROOT}" ${pascal_flags}) |
|
5188 | 151 |
|
8093
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
152 |
message(STATUS "Build system: Mac OS X ${current_macosx_version} with C compiler: ${CMAKE_C_COMPILER}") |
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
153 |
message(STATUS "Target system: Mac OS X ${minimum_macosx_version} for architecture(s): ${CMAKE_OSX_ARCHITECTURES}") |
2015 | 154 |
endif(APPLE) |
155 |
||
2406 | 156 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
157 |
#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
|
158 |
if (CMAKE_BUILD_TYPE) |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
159 |
string (TOUPPER ${CMAKE_BUILD_TYPE} CMAKE_BUILD_TYPE) |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
160 |
if ( NOT( (CMAKE_BUILD_TYPE MATCHES "RELEASE") OR (CMAKE_BUILD_TYPE MATCHES "DEBUG") ) ) |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
161 |
set (CMAKE_BUILD_TYPE ${default_build_type} CACHE STRING "Only 'Debug' or 'Release' options are allowed." FORCE) |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
162 |
message (STATUS "Unknown build type, using default (${default_build_type})") |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
163 |
endif () |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
164 |
else (CMAKE_BUILD_TYPE) |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
165 |
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
|
166 |
endif (CMAKE_BUILD_TYPE) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
167 |
|
7944 | 168 |
#set default flags values for all projects (unless MINIMAL_FLAGS is true) |
169 |
if(NOT MINIMAL_FLAGS) |
|
170 |
set(CMAKE_C_FLAGS "-pipe") |
|
171 |
set(CMAKE_C_FLAGS_RELEASE "-w -Os -fomit-frame-pointer") |
|
172 |
set(CMAKE_C_FLAGS_DEBUG "-Wall -O0 -g -DDEBUG") |
|
173 |
set(CMAKE_CXX_FLAGS ${CMAKE_C_FLAGS}) |
|
174 |
set(CMAKE_CXX_FLAGS_RELEASE ${CMAKE_C_FLAGS_RELEASE}) |
|
175 |
set(CMAKE_CXX_FLAGS_DEBUG ${CMAKE_C_FLAGS_DEBUG}) |
|
176 |
else() |
|
177 |
#CMake adds a lot of additional configuration flags, so let's clear them up |
|
178 |
set(CMAKE_C_FLAGS_RELEASE "") |
|
179 |
set(CMAKE_C_FLAGS_DEBUG "-Wall -DDEBUG") |
|
180 |
set(CMAKE_CXX_FLAGS_RELEASE "") |
|
181 |
set(CMAKE_CXX_FLAGS_DEBUG "-Wall -DDEBUG") |
|
182 |
endif() |
|
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
183 |
|
7397
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
184 |
#parse additional parameters |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
185 |
if(FPFLAGS OR GHFLAGS) |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
186 |
math(EXPR cmake_version "${CMAKE_MAJOR_VERSION}*10000 + ${CMAKE_MINOR_VERSION}*100 + ${CMAKE_PATCH_VERSION}") |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
187 |
if(cmake_version LESS "020800") |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
188 |
message(STATUS "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
|
189 |
else() |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
190 |
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
|
191 |
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
|
192 |
endif() |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
193 |
endif() |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
194 |
|
7816 | 195 |
set(pascal_flags ${fpflags_parsed} "-vm4079,4080,4081" "-B" "-FE../bin" "-Cs2000000" "-vewnq" "-dDEBUGFILE" ${pascal_flags}) |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
196 |
set(haskell_flags "-O2" ${ghflags_parsed} ${haskell_flags}) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
197 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
198 |
#get BUILD_TYPE and enable/disable optimisation |
7709
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
199 |
if(CMAKE_BUILD_TYPE MATCHES "DEBUG") |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
200 |
message(STATUS "Building Debug flavour") |
7820 | 201 |
set(pascal_flags "-O-" "-g" "-gl" "-gv" ${pascal_flags}) |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
202 |
set(haskell_flags "-Wall" "-debug" "-dcore-lint" "-fno-warn-unused-do-bind" ${haskell_flags}) |
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
203 |
else() |
7709
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
204 |
message(STATUS "Building Release flavour") |
7220 | 205 |
# set(pascal_flags "-O3" "-OpPENTIUM4" "-CfSSE3" "-Xs" "-Si" ${pascal_flags}) |
8273
3717cbf47daf
removing the optimisation that caused (most likely) the lua crashes on osx
koda
parents:
8146
diff
changeset
|
206 |
set(pascal_flags "-Os" "-Xs" "-Si" ${pascal_flags}) |
7220 | 207 |
set(haskell_flags "-w" "-fno-warn-unused-do-bind" ${haskell_flags}) |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
208 |
endif() |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
209 |
|
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
210 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
211 |
#finish setting paths |
266 | 212 |
if(DEFINED DATA_INSTALL_DIR) |
7220 | 213 |
set(SHAREPATH ${DATA_INSTALL_DIR}/hedgewars/) |
2652 | 214 |
else() |
7220 | 215 |
set(SHAREPATH share/hedgewars/) |
2652 | 216 |
endif() |
220 | 217 |
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin) |
7718
97ba379164ec
use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents:
7709
diff
changeset
|
218 |
set(LIBRARY_OUTPUT_PATH ${EXECUTABLE_OUTPUT_PATH}) |
8068
b35427506169
win build changes, fpc 2.6, CMAKE_PREFIX_PATH, glut header
koda
parents:
8055
diff
changeset
|
219 |
if(WIN32) |
b35427506169
win build changes, fpc 2.6, CMAKE_PREFIX_PATH, glut header
koda
parents:
8055
diff
changeset
|
220 |
set(CMAKE_PREFIX_PATH "${CMAKE_SOURCE_DIR}/misc/winutils/") |
b35427506169
win build changes, fpc 2.6, CMAKE_PREFIX_PATH, glut header
koda
parents:
8055
diff
changeset
|
221 |
link_directories("${EXECUTABLE_OUTPUT_PATH}" "${CMAKE_SOURCE_DIR}/misc/winutils/bin") |
b35427506169
win build changes, fpc 2.6, CMAKE_PREFIX_PATH, glut header
koda
parents:
8055
diff
changeset
|
222 |
endif(WIN32) |
271 | 223 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
224 |
#server discovery |
7223 | 225 |
if(NOT NOSERVER) |
7220 | 226 |
if(GHC) |
227 |
set(ghc_executable ${GHC}) |
|
228 |
else() |
|
229 |
find_program(ghc_executable ghc) |
|
230 |
endif() |
|
5053 | 231 |
|
7220 | 232 |
if(ghc_executable) |
233 |
set(HAVE_NETSERVER true) |
|
234 |
add_subdirectory(gameServer) |
|
7718
97ba379164ec
use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents:
7709
diff
changeset
|
235 |
message(STATUS "Found GHC: ${ghc_executable}") |
7220 | 236 |
else() |
8093
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
237 |
message(WARNING "Could NOT find GHC, server will not be built") |
7220 | 238 |
set(HAVE_NETSERVER false) |
239 |
endif() |
|
7223 | 240 |
else() |
241 |
message(STATUS "Server will not be built per user request") |
|
7220 | 242 |
set(HAVE_NETSERVER false) |
7223 | 243 |
endif() |
1415
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1370
diff
changeset
|
244 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
245 |
|
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
246 |
#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
|
247 |
find_package(Lua) |
7233
225179f64fd8
LUA_FOUND should surely be set only if the system lua was found.
nemo
parents:
7226
diff
changeset
|
248 |
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
|
249 |
message(STATUS "Found LUA: ${LUA_DEFAULT}") |
7223 | 250 |
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
|
251 |
message(STATUS "LUA will be provided by the bundled sources") |
7220 | 252 |
add_subdirectory(misc/liblua) |
8093
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
253 |
#linking with liblua.a requires system readline |
7704
b25add2fdfa6
slight tweak to lua linking (that will break everything, i'm sure)
koda
parents:
7397
diff
changeset
|
254 |
set(pascal_flags "-k${EXECUTABLE_OUTPUT_PATH}/lib${LUA_LIBRARY}.a" "-k-lreadline" ${pascal_flags}) |
7031
d5ea24399a48
when Lua is not found, fallback to compiling the one that comes bundled in our sources
koda
parents:
7030
diff
changeset
|
255 |
endif() |
7223 | 256 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
257 |
|
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
258 |
#main engine |
184 | 259 |
add_subdirectory(hedgewars) |
5053 | 260 |
|
8093
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
261 |
#physfs library |
7778 | 262 |
add_subdirectory(misc/physfs) |
263 |
||
8093
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
264 |
#frontend library |
8078 | 265 |
add_subdirectory(project_files/frontlib) |
266 |
||
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
267 |
#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
|
268 |
if(ANDROID) |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
269 |
#run cmake -DANDROID=1 to enable this |
7220 | 270 |
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
|
271 |
endif() |
5381
8f95038f3f75
Removed protocol check, using CMake now to setup the building scripts using Templates/* removed old scripts
Xeli
parents:
5223
diff
changeset
|
272 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
273 |
#TODO: when ANDROID, BUILD_ENGINE_LIBRARY should be set |
8082
675372256a01
lotsa hackery to get frontend somehow link libengine...
koda
parents:
8078
diff
changeset
|
274 |
if(NOT ANDROID) |
7220 | 275 |
add_subdirectory(bin) |
276 |
add_subdirectory(QTfrontend) |
|
277 |
add_subdirectory(share) |
|
278 |
add_subdirectory(tools) |
|
3515 | 279 |
endif() |
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
280 |
|
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
281 |
|
5405 | 282 |
# CPack variables |
3338
dee9beba85cc
patch by raptor (polished by me) to allow tiger/xcode24 compilation
koda
parents:
3306
diff
changeset
|
283 |
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Hedgewars, a free turn-based strategy") |
2827 | 284 |
set(CPACK_PACKAGE_VENDOR "Hedgewars Project") |
907 | 285 |
set(CPACK_PACKAGE_FILE_NAME "hedgewars-${HEDGEWARS_VERSION}") |
286 |
set(CPACK_SOURCE_PACKAGE_FILE_NAME "hedgewars-src-${HEDGEWARS_VERSION}") |
|
1459 | 287 |
set(CPACK_SOURCE_GENERATOR "TBZ2") |
1173
70b0acd4548c
Revert accidental nsis installer generator regression
unc0rr
parents:
1159
diff
changeset
|
288 |
set(CPACK_PACKAGE_EXECUTABLES "hedgewars" "hedgewars") |
458 | 289 |
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/COPYING") |
907 | 290 |
set(CPACK_PACKAGE_INSTALL_DIRECTORY "Hedgewars ${HEDGEWARS_VERSION}") |
184 | 291 |
|
292 |
if(WIN32 AND NOT UNIX) |
|
7220 | 293 |
set(CPACK_NSIS_DISPLAY_NAME "Hedgewars") |
294 |
set(CPACK_NSIS_HELP_LINK "http://www.hedgewars.org/") |
|
295 |
set(CPACK_NSIS_URL_INFO_ABOUT "http://www.hedgewars.org/") |
|
296 |
set(CPACK_NSIS_CONTACT "unC0Rr@gmail.com") |
|
297 |
set(CPACK_NSIS_MODIFY_PATH OFF) |
|
298 |
set(CPACK_GENERATOR "ZIP;NSIS") |
|
299 |
set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "hedgewars") |
|
184 | 300 |
else(WIN32 AND NOT UNIX) |
7220 | 301 |
set(CPACK_STRIP_FILES "bin/hedgewars;bin/hwengine") |
184 | 302 |
endif(WIN32 AND NOT UNIX) |
303 |
||
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
304 |
set(CPACK_SOURCE_IGNORE_FILES |
7220 | 305 |
"~" |
306 |
"\\\\.hg" |
|
307 |
"\\\\.svn" |
|
308 |
"\\\\.exe$" |
|
309 |
"\\\\.a$" |
|
310 |
"\\\\.dll$" |
|
311 |
"\\\\.xcf$" |
|
312 |
"\\\\.cxx$" |
|
313 |
"\\\\.db$" |
|
314 |
"\\\\.dof$" |
|
315 |
"\\\\.layout$" |
|
316 |
"\\\\.zip$" |
|
317 |
"\\\\.gz$" |
|
318 |
"\\\\.bz2$" |
|
319 |
"\\\\.tmp$" |
|
320 |
"\\\\.core$" |
|
321 |
"\\\\.sh$" |
|
322 |
"\\\\.sifz$" |
|
323 |
"\\\\.svg$" |
|
324 |
"\\\\.svgz$" |
|
325 |
"\\\\.ppu$" |
|
326 |
"\\\\.psd$" |
|
327 |
"\\\\.o$" |
|
328 |
"Makefile" |
|
329 |
"Doxyfile" |
|
330 |
"CMakeFiles" |
|
331 |
"debug" |
|
332 |
"release$" |
|
333 |
"Debug$" |
|
334 |
"Release$" |
|
335 |
"proto\\\\.inc$" |
|
336 |
"hwconsts\\\\.cpp$" |
|
337 |
"playlist\\\\.inc$" |
|
338 |
"CPack" |
|
339 |
"cmake_install\\\\.cmake$" |
|
340 |
"config\\\\.inc$" |
|
341 |
"hwengine\\\\.desktop$" |
|
342 |
"CMakeCache\\\\.txt$" |
|
343 |
# "^${CMAKE_CURRENT_SOURCE_DIR}/misc/libopenalbridge" |
|
344 |
# "^${CMAKE_CURRENT_SOURCE_DIR}/misc/libfreetype" |
|
345 |
"^${CMAKE_CURRENT_SOURCE_DIR}/misc/liblua" |
|
346 |
# "^${CMAKE_CURRENT_SOURCE_DIR}/misc/libtremor" |
|
347 |
"^${CMAKE_CURRENT_SOURCE_DIR}/project_files/HedgewarsMobile/" |
|
348 |
"^${CMAKE_CURRENT_SOURCE_DIR}/bin/[a-z]" |
|
349 |
"^${CMAKE_CURRENT_SOURCE_DIR}/tools/templates" |
|
350 |
"^${CMAKE_CURRENT_SOURCE_DIR}/doc" |
|
351 |
"^${CMAKE_CURRENT_SOURCE_DIR}/templates" |
|
352 |
"^${CMAKE_CURRENT_SOURCE_DIR}/Graphics" |
|
353 |
"^${CMAKE_CURRENT_SOURCE_DIR}/realtest" |
|
354 |
"^${CMAKE_CURRENT_SOURCE_DIR}/tmp" |
|
355 |
"^${CMAKE_CURRENT_SOURCE_DIR}/utils" |
|
356 |
"^${CMAKE_CURRENT_SOURCE_DIR}/share/hedgewars/Data/Maps/test" |
|
357 |
"^${CMAKE_CURRENT_SOURCE_DIR}/share/hedgewars/Data/Themes/ethereal" |
|
358 |
"^${CMAKE_CURRENT_SOURCE_DIR}/install_manifest.txt" |
|
359 |
"^${CMAKE_CURRENT_SOURCE_DIR}/CMakeCache.txt" |
|
360 |
"^${CMAKE_CURRENT_SOURCE_DIR}/hedgewars\\\\." |
|
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
361 |
) |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
362 |
|
184 | 363 |
include(CPack) |
5407 | 364 |