author | nemo |
Fri, 26 Oct 2012 10:31:26 -0400 | |
changeset 7822 | 61ff669d610f |
parent 7820 | c1b491e03362 |
child 7821 | 9353d5eb360e |
child 7883 | 720e95f5a74e |
permissions | -rw-r--r-- |
184 | 1 |
project(hedgewars) |
2 |
||
5407 | 3 |
|
4 |
#initialise cmake environment |
|
1461
87e5a6c3882c
Ping clients every 30 seconds, should help with ghosts on server
unc0rr
parents:
1459
diff
changeset
|
5 |
cmake_minimum_required(VERSION 2.6.0 FATAL_ERROR) |
5169 | 6 |
FOREACH(policy CMP0003 CMP0012) |
7220 | 7 |
IF(POLICY ${policy}) |
8 |
CMAKE_POLICY(SET ${policy} NEW) |
|
9 |
ENDIF() |
|
5169 | 10 |
ENDFOREACH() |
5407 | 11 |
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake_modules) |
5405 | 12 |
|
1107 | 13 |
|
4252 | 14 |
#detect Mercurial revision (if present) |
6404
789c17eac2fe
Aaaand merge into trunk too in case guys I was playing earlier are on trunk
nemo
parents:
6375
diff
changeset
|
15 |
set(version_suffix "-dev") #UNSET THIS VARIABLE AT RELEASE TIME |
4903 | 16 |
set(HGCHANGED "") |
3074 | 17 |
IF(version_suffix MATCHES "-dev") |
7220 | 18 |
set(HW_DEV true) |
7709
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
19 |
set(default_build_type "DEBUG") |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
20 |
IF(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/.hg) |
7220 | 21 |
FIND_PROGRAM(HGCOMMAND hg) |
22 |
IF(HGCOMMAND) |
|
23 |
exec_program(${HGCOMMAND} |
|
24 |
ARGS identify -in ${CMAKE_CURRENT_SOURCE_DIR} |
|
25 |
OUTPUT_VARIABLE version_suffix |
|
26 |
) |
|
27 |
STRING(REGEX REPLACE "[^+]" "" HGCHANGED ${version_suffix}) |
|
28 |
STRING(REGEX REPLACE "([0-9a-zA-Z]+)(.*) ([0-9]+)(.*)" "\\3-\\1" version_suffix ${version_suffix}) |
|
29 |
IF (HGCHANGED) |
|
30 |
MESSAGE(STATUS "Building revision ${version_suffix} (SOURCE CODE MODIFIED)") |
|
31 |
ELSE() |
|
32 |
MESSAGE(STATUS "Building revision ${version_suffix}") |
|
33 |
ENDIF() |
|
34 |
set(version_suffix "-${version_suffix}") |
|
35 |
ENDIF() |
|
36 |
ENDIF() |
|
3074 | 37 |
ELSE() |
7220 | 38 |
set(HW_DEV false) |
7709
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
39 |
set(default_build_type "RELEASE") |
2672 | 40 |
ENDIF() |
41 |
||
1107 | 42 |
|
5405 | 43 |
#versioning |
5407 | 44 |
set(CPACK_PACKAGE_VERSION_MAJOR 0) |
45 |
set(CPACK_PACKAGE_VERSION_MINOR 9) |
|
6605
800d4c029d53
bump to 0.9.18-dev - not sure how this was missed before
nemo
parents:
6538
diff
changeset
|
46 |
set(CPACK_PACKAGE_VERSION_PATCH 18${version_suffix}) |
6419
6a464d0a5c13
Tidy up flake land generation, to avoid ragged holes in landbacktex. Remove of one odd Land[] change forces a PROTO bump. Well, had to happen eventually.
nemo
parents:
6415
diff
changeset
|
47 |
set(HEDGEWARS_PROTO_VER 42) |
5407 | 48 |
set(HEDGEWARS_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}") |
5405 | 49 |
|
907 | 50 |
|
7718
97ba379164ec
use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents:
7709
diff
changeset
|
51 |
#set some default values |
97ba379164ec
use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents:
7709
diff
changeset
|
52 |
option(NOSERVER "Disable gameServer build [default: auto]" OFF) |
97ba379164ec
use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents:
7709
diff
changeset
|
53 |
option(NOPNG "Disable screenshoot compression [default: auto]" OFF) |
97ba379164ec
use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents:
7709
diff
changeset
|
54 |
option(NOVIDEOREC "Disable video recording [default: auto]" OFF) |
97ba379164ec
use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents:
7709
diff
changeset
|
55 |
|
97ba379164ec
use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents:
7709
diff
changeset
|
56 |
option(BUILD_ENGINE_LIBRARY "Enable hwengine library [default: off]" OFF) |
97ba379164ec
use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents:
7709
diff
changeset
|
57 |
option(ANDROID "Enable Android build [default: off]" OFF) |
97ba379164ec
use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents:
7709
diff
changeset
|
58 |
option(CROSSAPPLE "Enable OSX when not on OSX [default: off]" OFF) |
97ba379164ec
use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents:
7709
diff
changeset
|
59 |
|
3495
a6b4f351d400
now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents:
3407
diff
changeset
|
60 |
|
5405 | 61 |
#bundle .app setup |
7256 | 62 |
if(APPLE OR CROSSAPPLE) |
7220 | 63 |
#paths for creating the bundle |
64 |
set(bundle_name Hedgewars.app) |
|
65 |
set(frameworks_dir ${bundle_name}/Contents/Frameworks/) |
|
66 |
set(CMAKE_INSTALL_PREFIX ${bundle_name}/Contents/MacOS/) |
|
67 |
set(DATA_INSTALL_DIR "../Resources/") |
|
68 |
set(target_dir ".") |
|
7256 | 69 |
set(minimum_macosx_version "10.6") |
7718
97ba379164ec
use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents:
7709
diff
changeset
|
70 |
else() |
97ba379164ec
use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents:
7709
diff
changeset
|
71 |
set(target_dir "bin") |
7256 | 72 |
endif() |
73 |
||
74 |
if(APPLE) |
|
75 |
set(CMAKE_FIND_FRAMEWORK "FIRST") |
|
3697 | 76 |
|
7220 | 77 |
#what system are we building for |
78 |
set(minimum_macosx_version $ENV{MACOSX_DEPLOYMENT_TARGET}) |
|
3697 | 79 |
|
7220 | 80 |
#detect on which system we are: if sw_vers cannot be found for any reason (re)use minimum_macosx_version |
81 |
find_program(sw_vers sw_vers) |
|
82 |
if(sw_vers) |
|
83 |
exec_program(${sw_vers} ARGS "-productVersion" OUTPUT_VARIABLE current_macosx_version) |
|
84 |
string(REGEX REPLACE "([0-9]+.[0-9]+).[0-9]+" "\\1" current_macosx_version ${current_macosx_version}) |
|
85 |
else() |
|
86 |
if(NOT minimum_macosx_version) |
|
87 |
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
|
88 |
else() |
7220 | 89 |
set(current_macosx_version ${minimum_macosx_version}) |
90 |
endif() |
|
91 |
endif() |
|
2641 | 92 |
|
7220 | 93 |
#if nothing is set, we deploy only for the current system |
94 |
if(NOT minimum_macosx_version) |
|
95 |
set(minimum_macosx_version ${current_macosx_version}) |
|
96 |
endif() |
|
2641 | 97 |
|
7220 | 98 |
#lower systems don't have enough processing power anyways |
99 |
if (minimum_macosx_version LESS "10.4") |
|
100 |
message(FATAL_ERROR "Hedgewars is not supported on Mac OS X pre-10.4") |
|
101 |
endif() |
|
2929 | 102 |
|
7220 | 103 |
#workaround for http://playcontrol.net/ewing/jibberjabber/big_behind-the-scenes_chang.html#SDL_mixer (Update 2) |
104 |
if(current_macosx_version MATCHES "10.4") |
|
105 |
find_package(SDL_mixer REQUIRED) |
|
106 |
set(DYLIB_SMPEG "-dylib_file @loader_path/Frameworks/smpeg.framework/Versions/A/smpeg:${SDLMIXER_LIBRARY}/Versions/A/Frameworks/smpeg.framework/Versions/A/smpeg") |
|
107 |
set(DYLIB_MIKMOD "-dylib_file @loader_path/Frameworks/mikmod.framework/Versions/A/mikmod:${SDLMIXER_LIBRARY}/Versions/A/Frameworks/mikmod.framework/Versions/A/mikmod") |
|
108 |
set(pascal_flags "-k${DYLIB_SMPEG}" "-k${DYLIB_MIKMOD}" ${pascal_flags}) |
|
109 |
set(CMAKE_C_FLAGS "${DYLIB_SMPEG}" "${DYLIB_MIKMOD}" ${CMAKE_C_FLAGS}) |
|
110 |
endif() |
|
7114
e0110a1229b7
add NOPNG to cmake to explicitly disable PNG dependency
koda
parents:
7113
diff
changeset
|
111 |
|
7220 | 112 |
#CMAKE_OSX_ARCHITECTURES and CMAKE_OSX_SYSROOT need to be set for universal binary and correct linking |
113 |
if(NOT CMAKE_OSX_ARCHITECTURES) |
|
114 |
if(current_macosx_version LESS "10.6") |
|
115 |
if(${CMAKE_SYSTEM_PROCESSOR} MATCHES "powerpc*") |
|
116 |
set(CMAKE_OSX_ARCHITECTURES "ppc7400") |
|
117 |
else() |
|
118 |
set(CMAKE_OSX_ARCHITECTURES "i386") |
|
119 |
endif() |
|
120 |
else() |
|
121 |
set(CMAKE_OSX_ARCHITECTURES "x86_64") |
|
122 |
endif() |
|
123 |
endif() |
|
5053 | 124 |
|
7220 | 125 |
#CMAKE_OSX_SYSROOT is set at the system version we are supposed to build on |
126 |
#we need to provide the correct one when host and target differ |
|
127 |
if(NOT ${minimum_macosx_version} MATCHES ${current_macosx_version}) |
|
128 |
if(minimum_macosx_version MATCHES "10.4") |
|
129 |
set(CMAKE_OSX_SYSROOT "/Developer/SDKs/MacOSX10.4u.sdk/") |
|
130 |
set(CMAKE_C_COMPILER "gcc-4.0") |
|
131 |
set(CMAKE_CXX_COMPILER "g++-4.0") |
|
132 |
else() |
|
133 |
string(REGEX REPLACE "([0-9]+.[0-9]+).[0-9]+" "\\1" sdk_version ${minimum_macosx_version}) |
|
134 |
set(CMAKE_OSX_SYSROOT "/Developer/SDKs/MacOSX${sdk_version}.sdk/") |
|
135 |
endif() |
|
136 |
endif() |
|
2641 | 137 |
|
7220 | 138 |
#add user framework directory, other paths can be passed via FPFLAGS |
139 |
set(pascal_flags "-Ff~/Library/Frameworks" ${pascal_flags}) |
|
140 |
#set deployment target |
|
141 |
set(pascal_flags "-k-macosx_version_min" "-k${minimum_macosx_version}" "-XR${CMAKE_OSX_SYSROOT}" ${pascal_flags}) |
|
5188 | 142 |
|
7220 | 143 |
message(STATUS "Build system: Mac OS X ${current_macosx_version} with GCC:${CMAKE_C_COMPILER}") |
144 |
message(STATUS "Target system: Mac OS X ${minimum_macosx_version} for architecture(s):${CMAKE_OSX_ARCHITECTURES}") |
|
2015 | 145 |
endif(APPLE) |
146 |
||
2406 | 147 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
148 |
#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
|
149 |
if (CMAKE_BUILD_TYPE) |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
150 |
string (TOUPPER ${CMAKE_BUILD_TYPE} CMAKE_BUILD_TYPE) |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
151 |
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
|
152 |
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
|
153 |
message (STATUS "Unknown build type, using default (${default_build_type})") |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
154 |
endif () |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
155 |
else (CMAKE_BUILD_TYPE) |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
156 |
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
|
157 |
endif (CMAKE_BUILD_TYPE) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
158 |
|
2406 | 159 |
|
7030
09984acadece
invert LUA symbol meaning and avoid hints when compiling without it
koda
parents:
7029
diff
changeset
|
160 |
#set default flags values for all projects |
3338
dee9beba85cc
patch by raptor (polished by me) to allow tiger/xcode24 compilation
koda
parents:
3306
diff
changeset
|
161 |
set(CMAKE_C_FLAGS "-pipe ${CMAKE_C_FLAGS}") |
6538
5a1f49d84d95
testing, let's try -Os optimisation for frontend and engine; small cleanup and typos
koda
parents:
6537
diff
changeset
|
162 |
set(CMAKE_C_FLAGS_RELEASE "-w -Os -fomit-frame-pointer ${CMAKE_C_FLAGS_RELEASE}") |
3338
dee9beba85cc
patch by raptor (polished by me) to allow tiger/xcode24 compilation
koda
parents:
3306
diff
changeset
|
163 |
set(CMAKE_C_FLAGS_DEBUG "-Wall -O0 -g -DDEBUG ${CMAKE_C_FLAGS_DEBUG}") |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
164 |
set(CMAKE_CXX_FLAGS ${CMAKE_C_FLAGS}) |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
165 |
set(CMAKE_CXX_FLAGS_RELEASE ${CMAKE_C_FLAGS_RELEASE}) |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
166 |
set(CMAKE_CXX_FLAGS_DEBUG ${CMAKE_C_FLAGS_DEBUG}) |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
167 |
|
7397
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
168 |
#parse additional parameters |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
169 |
if(FPFLAGS OR GHFLAGS) |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
170 |
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
|
171 |
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
|
172 |
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
|
173 |
else() |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
174 |
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
|
175 |
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
|
176 |
endif() |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
177 |
endif() |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
178 |
|
7816 | 179 |
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
|
180 |
set(haskell_flags "-O2" ${ghflags_parsed} ${haskell_flags}) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
181 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
182 |
#get BUILD_TYPE and enable/disable optimisation |
7709
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
183 |
if(CMAKE_BUILD_TYPE MATCHES "DEBUG") |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
184 |
message(STATUS "Building Debug flavour") |
7820 | 185 |
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
|
186 |
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
|
187 |
else() |
7709
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
188 |
message(STATUS "Building Release flavour") |
7220 | 189 |
# set(pascal_flags "-O3" "-OpPENTIUM4" "-CfSSE3" "-Xs" "-Si" ${pascal_flags}) |
190 |
set(pascal_flags "-Os" "-Ooregvar" "-Xs" "-Si" ${pascal_flags}) |
|
191 |
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
|
192 |
endif() |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
193 |
|
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
194 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
195 |
#finish setting paths |
266 | 196 |
if(DEFINED DATA_INSTALL_DIR) |
7220 | 197 |
set(SHAREPATH ${DATA_INSTALL_DIR}/hedgewars/) |
2652 | 198 |
else() |
7220 | 199 |
set(SHAREPATH share/hedgewars/) |
2652 | 200 |
endif() |
220 | 201 |
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
|
202 |
set(LIBRARY_OUTPUT_PATH ${EXECUTABLE_OUTPUT_PATH}) |
184 | 203 |
|
271 | 204 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
205 |
#server discovery |
7223 | 206 |
if(NOT NOSERVER) |
7220 | 207 |
if(GHC) |
208 |
set(ghc_executable ${GHC}) |
|
209 |
else() |
|
210 |
find_program(ghc_executable ghc) |
|
211 |
endif() |
|
5053 | 212 |
|
7220 | 213 |
if(ghc_executable) |
214 |
set(HAVE_NETSERVER true) |
|
215 |
add_subdirectory(gameServer) |
|
7718
97ba379164ec
use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents:
7709
diff
changeset
|
216 |
message(STATUS "Found GHC: ${ghc_executable}") |
7220 | 217 |
else() |
7718
97ba379164ec
use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents:
7709
diff
changeset
|
218 |
message(STATUS "Could NOT find GHC, server will not be built") |
7220 | 219 |
set(HAVE_NETSERVER false) |
220 |
endif() |
|
7223 | 221 |
else() |
222 |
message(STATUS "Server will not be built per user request") |
|
7220 | 223 |
set(HAVE_NETSERVER false) |
7223 | 224 |
endif() |
1415
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1370
diff
changeset
|
225 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
226 |
|
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
227 |
#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
|
228 |
find_package(Lua) |
7233
225179f64fd8
LUA_FOUND should surely be set only if the system lua was found.
nemo
parents:
7226
diff
changeset
|
229 |
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
|
230 |
message(STATUS "Found LUA: ${LUA_DEFAULT}") |
7223 | 231 |
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
|
232 |
message(STATUS "LUA will be provided by the bundled sources") |
7220 | 233 |
add_subdirectory(misc/liblua) |
7223 | 234 |
#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
|
235 |
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
|
236 |
endif() |
7223 | 237 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
238 |
|
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
239 |
#main engine |
184 | 240 |
add_subdirectory(hedgewars) |
5053 | 241 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
242 |
#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
|
243 |
if(ANDROID) |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
244 |
#run cmake -DANDROID=1 to enable this |
7220 | 245 |
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
|
246 |
endif() |
5381
8f95038f3f75
Removed protocol check, using CMake now to setup the building scripts using Templates/* removed old scripts
Xeli
parents:
5223
diff
changeset
|
247 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
248 |
#TODO: when ANDROID, BUILD_ENGINE_LIBRARY should be set |
7099
c0e403f618aa
remove the need to qt and co when using cmake with -DANDROID=1
Xeli
parents:
7050
diff
changeset
|
249 |
if(NOT (BUILD_ENGINE_LIBRARY OR ANDROID)) |
7220 | 250 |
add_subdirectory(bin) |
251 |
add_subdirectory(misc/quazip) |
|
252 |
add_subdirectory(QTfrontend) |
|
253 |
add_subdirectory(share) |
|
254 |
add_subdirectory(tools) |
|
3515 | 255 |
endif() |
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
256 |
|
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
257 |
|
5405 | 258 |
# CPack variables |
3338
dee9beba85cc
patch by raptor (polished by me) to allow tiger/xcode24 compilation
koda
parents:
3306
diff
changeset
|
259 |
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Hedgewars, a free turn-based strategy") |
2827 | 260 |
set(CPACK_PACKAGE_VENDOR "Hedgewars Project") |
907 | 261 |
set(CPACK_PACKAGE_FILE_NAME "hedgewars-${HEDGEWARS_VERSION}") |
262 |
set(CPACK_SOURCE_PACKAGE_FILE_NAME "hedgewars-src-${HEDGEWARS_VERSION}") |
|
1459 | 263 |
set(CPACK_SOURCE_GENERATOR "TBZ2") |
1173
70b0acd4548c
Revert accidental nsis installer generator regression
unc0rr
parents:
1159
diff
changeset
|
264 |
set(CPACK_PACKAGE_EXECUTABLES "hedgewars" "hedgewars") |
458 | 265 |
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/COPYING") |
907 | 266 |
set(CPACK_PACKAGE_INSTALL_DIRECTORY "Hedgewars ${HEDGEWARS_VERSION}") |
184 | 267 |
|
268 |
if(WIN32 AND NOT UNIX) |
|
7220 | 269 |
set(CPACK_NSIS_DISPLAY_NAME "Hedgewars") |
270 |
set(CPACK_NSIS_HELP_LINK "http://www.hedgewars.org/") |
|
271 |
set(CPACK_NSIS_URL_INFO_ABOUT "http://www.hedgewars.org/") |
|
272 |
set(CPACK_NSIS_CONTACT "unC0Rr@gmail.com") |
|
273 |
set(CPACK_NSIS_MODIFY_PATH OFF) |
|
274 |
set(CPACK_GENERATOR "ZIP;NSIS") |
|
275 |
set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "hedgewars") |
|
184 | 276 |
else(WIN32 AND NOT UNIX) |
7220 | 277 |
set(CPACK_STRIP_FILES "bin/hedgewars;bin/hwengine") |
184 | 278 |
endif(WIN32 AND NOT UNIX) |
279 |
||
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
280 |
set(CPACK_SOURCE_IGNORE_FILES |
7220 | 281 |
"~" |
282 |
"\\\\.hg" |
|
283 |
"\\\\.svn" |
|
284 |
"\\\\.exe$" |
|
285 |
"\\\\.a$" |
|
286 |
"\\\\.dll$" |
|
287 |
"\\\\.xcf$" |
|
288 |
"\\\\.cxx$" |
|
289 |
"\\\\.db$" |
|
290 |
"\\\\.dof$" |
|
291 |
"\\\\.layout$" |
|
292 |
"\\\\.zip$" |
|
293 |
"\\\\.gz$" |
|
294 |
"\\\\.bz2$" |
|
295 |
"\\\\.tmp$" |
|
296 |
"\\\\.core$" |
|
297 |
"\\\\.sh$" |
|
298 |
"\\\\.sifz$" |
|
299 |
"\\\\.svg$" |
|
300 |
"\\\\.svgz$" |
|
301 |
"\\\\.ppu$" |
|
302 |
"\\\\.psd$" |
|
303 |
"\\\\.o$" |
|
304 |
"Makefile" |
|
305 |
"Doxyfile" |
|
306 |
"CMakeFiles" |
|
307 |
"debug" |
|
308 |
"release$" |
|
309 |
"Debug$" |
|
310 |
"Release$" |
|
311 |
"proto\\\\.inc$" |
|
312 |
"hwconsts\\\\.cpp$" |
|
313 |
"playlist\\\\.inc$" |
|
314 |
"CPack" |
|
315 |
"cmake_install\\\\.cmake$" |
|
316 |
"config\\\\.inc$" |
|
317 |
"hwengine\\\\.desktop$" |
|
318 |
"CMakeCache\\\\.txt$" |
|
319 |
# "^${CMAKE_CURRENT_SOURCE_DIR}/misc/libopenalbridge" |
|
320 |
# "^${CMAKE_CURRENT_SOURCE_DIR}/misc/libfreetype" |
|
321 |
"^${CMAKE_CURRENT_SOURCE_DIR}/misc/liblua" |
|
322 |
# "^${CMAKE_CURRENT_SOURCE_DIR}/misc/libtremor" |
|
323 |
"^${CMAKE_CURRENT_SOURCE_DIR}/project_files/HedgewarsMobile/" |
|
324 |
"^${CMAKE_CURRENT_SOURCE_DIR}/bin/[a-z]" |
|
325 |
"^${CMAKE_CURRENT_SOURCE_DIR}/tools/templates" |
|
326 |
"^${CMAKE_CURRENT_SOURCE_DIR}/doc" |
|
327 |
"^${CMAKE_CURRENT_SOURCE_DIR}/templates" |
|
328 |
"^${CMAKE_CURRENT_SOURCE_DIR}/Graphics" |
|
329 |
"^${CMAKE_CURRENT_SOURCE_DIR}/realtest" |
|
330 |
"^${CMAKE_CURRENT_SOURCE_DIR}/tmp" |
|
331 |
"^${CMAKE_CURRENT_SOURCE_DIR}/utils" |
|
332 |
"^${CMAKE_CURRENT_SOURCE_DIR}/share/hedgewars/Data/Maps/test" |
|
333 |
"^${CMAKE_CURRENT_SOURCE_DIR}/share/hedgewars/Data/Themes/ethereal" |
|
334 |
"^${CMAKE_CURRENT_SOURCE_DIR}/install_manifest.txt" |
|
335 |
"^${CMAKE_CURRENT_SOURCE_DIR}/CMakeCache.txt" |
|
336 |
"^${CMAKE_CURRENT_SOURCE_DIR}/hedgewars\\\\." |
|
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
337 |
) |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
338 |
|
184 | 339 |
include(CPack) |
5407 | 340 |