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