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