author | koda |
Mon, 05 Nov 2012 02:24:28 +0100 | |
branch | webgl |
changeset 7973 | afb67e34a6b5 |
parent 7933 | 223b3a195474 |
child 7993 | 5b5083dc6837 |
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) |
7927 | 15 |
set(version_suffix "") #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) |
|
7927 | 46 |
set(CPACK_PACKAGE_VERSION_PATCH 18${version_suffix}) |
47 |
set(HEDGEWARS_PROTO_VER 43) |
|
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) |
7973 | 58 |
option(WEBGL "Enable WebGL build [default: off]" OFF) |
7933 | 59 |
|
60 |
option(NOAUTOUPDATE "Disable OS X Sparkle update checking" OFF) |
|
7718
97ba379164ec
use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents:
7709
diff
changeset
|
61 |
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
|
62 |
|
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
|
63 |
|
5405 | 64 |
#bundle .app setup |
7256 | 65 |
if(APPLE OR CROSSAPPLE) |
7220 | 66 |
#paths for creating the bundle |
67 |
set(bundle_name Hedgewars.app) |
|
68 |
set(frameworks_dir ${bundle_name}/Contents/Frameworks/) |
|
69 |
set(CMAKE_INSTALL_PREFIX ${bundle_name}/Contents/MacOS/) |
|
70 |
set(DATA_INSTALL_DIR "../Resources/") |
|
71 |
set(target_dir ".") |
|
7256 | 72 |
set(minimum_macosx_version "10.6") |
7718
97ba379164ec
use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents:
7709
diff
changeset
|
73 |
else() |
97ba379164ec
use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents:
7709
diff
changeset
|
74 |
set(target_dir "bin") |
7256 | 75 |
endif() |
76 |
||
77 |
if(APPLE) |
|
78 |
set(CMAKE_FIND_FRAMEWORK "FIRST") |
|
3697 | 79 |
|
7220 | 80 |
#what system are we building for |
81 |
set(minimum_macosx_version $ENV{MACOSX_DEPLOYMENT_TARGET}) |
|
3697 | 82 |
|
7220 | 83 |
#detect on which system we are: if sw_vers cannot be found for any reason (re)use minimum_macosx_version |
84 |
find_program(sw_vers sw_vers) |
|
85 |
if(sw_vers) |
|
86 |
exec_program(${sw_vers} ARGS "-productVersion" OUTPUT_VARIABLE current_macosx_version) |
|
87 |
string(REGEX REPLACE "([0-9]+.[0-9]+).[0-9]+" "\\1" current_macosx_version ${current_macosx_version}) |
|
88 |
else() |
|
89 |
if(NOT minimum_macosx_version) |
|
90 |
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
|
91 |
else() |
7220 | 92 |
set(current_macosx_version ${minimum_macosx_version}) |
93 |
endif() |
|
94 |
endif() |
|
2641 | 95 |
|
7220 | 96 |
#if nothing is set, we deploy only for the current system |
97 |
if(NOT minimum_macosx_version) |
|
98 |
set(minimum_macosx_version ${current_macosx_version}) |
|
99 |
endif() |
|
2641 | 100 |
|
7220 | 101 |
#lower systems don't have enough processing power anyways |
102 |
if (minimum_macosx_version LESS "10.4") |
|
103 |
message(FATAL_ERROR "Hedgewars is not supported on Mac OS X pre-10.4") |
|
104 |
endif() |
|
2929 | 105 |
|
7220 | 106 |
#workaround for http://playcontrol.net/ewing/jibberjabber/big_behind-the-scenes_chang.html#SDL_mixer (Update 2) |
107 |
if(current_macosx_version MATCHES "10.4") |
|
108 |
find_package(SDL_mixer REQUIRED) |
|
109 |
set(DYLIB_SMPEG "-dylib_file @loader_path/Frameworks/smpeg.framework/Versions/A/smpeg:${SDLMIXER_LIBRARY}/Versions/A/Frameworks/smpeg.framework/Versions/A/smpeg") |
|
110 |
set(DYLIB_MIKMOD "-dylib_file @loader_path/Frameworks/mikmod.framework/Versions/A/mikmod:${SDLMIXER_LIBRARY}/Versions/A/Frameworks/mikmod.framework/Versions/A/mikmod") |
|
111 |
set(pascal_flags "-k${DYLIB_SMPEG}" "-k${DYLIB_MIKMOD}" ${pascal_flags}) |
|
112 |
set(CMAKE_C_FLAGS "${DYLIB_SMPEG}" "${DYLIB_MIKMOD}" ${CMAKE_C_FLAGS}) |
|
113 |
endif() |
|
7114
e0110a1229b7
add NOPNG to cmake to explicitly disable PNG dependency
koda
parents:
7113
diff
changeset
|
114 |
|
7220 | 115 |
#CMAKE_OSX_ARCHITECTURES and CMAKE_OSX_SYSROOT need to be set for universal binary and correct linking |
116 |
if(NOT CMAKE_OSX_ARCHITECTURES) |
|
117 |
if(current_macosx_version LESS "10.6") |
|
118 |
if(${CMAKE_SYSTEM_PROCESSOR} MATCHES "powerpc*") |
|
119 |
set(CMAKE_OSX_ARCHITECTURES "ppc7400") |
|
120 |
else() |
|
121 |
set(CMAKE_OSX_ARCHITECTURES "i386") |
|
122 |
endif() |
|
123 |
else() |
|
124 |
set(CMAKE_OSX_ARCHITECTURES "x86_64") |
|
125 |
endif() |
|
126 |
endif() |
|
5053 | 127 |
|
7220 | 128 |
#CMAKE_OSX_SYSROOT is set at the system version we are supposed to build on |
129 |
#we need to provide the correct one when host and target differ |
|
130 |
if(NOT ${minimum_macosx_version} MATCHES ${current_macosx_version}) |
|
131 |
if(minimum_macosx_version MATCHES "10.4") |
|
132 |
set(CMAKE_OSX_SYSROOT "/Developer/SDKs/MacOSX10.4u.sdk/") |
|
133 |
set(CMAKE_C_COMPILER "gcc-4.0") |
|
134 |
set(CMAKE_CXX_COMPILER "g++-4.0") |
|
135 |
else() |
|
136 |
string(REGEX REPLACE "([0-9]+.[0-9]+).[0-9]+" "\\1" sdk_version ${minimum_macosx_version}) |
|
137 |
set(CMAKE_OSX_SYSROOT "/Developer/SDKs/MacOSX${sdk_version}.sdk/") |
|
138 |
endif() |
|
139 |
endif() |
|
2641 | 140 |
|
7220 | 141 |
#add user framework directory, other paths can be passed via FPFLAGS |
142 |
set(pascal_flags "-Ff~/Library/Frameworks" ${pascal_flags}) |
|
143 |
#set deployment target |
|
144 |
set(pascal_flags "-k-macosx_version_min" "-k${minimum_macosx_version}" "-XR${CMAKE_OSX_SYSROOT}" ${pascal_flags}) |
|
5188 | 145 |
|
7220 | 146 |
message(STATUS "Build system: Mac OS X ${current_macosx_version} with GCC:${CMAKE_C_COMPILER}") |
147 |
message(STATUS "Target system: Mac OS X ${minimum_macosx_version} for architecture(s):${CMAKE_OSX_ARCHITECTURES}") |
|
2015 | 148 |
endif(APPLE) |
149 |
||
2406 | 150 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
151 |
#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
|
152 |
if (CMAKE_BUILD_TYPE) |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
153 |
string (TOUPPER ${CMAKE_BUILD_TYPE} CMAKE_BUILD_TYPE) |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
154 |
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
|
155 |
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
|
156 |
message (STATUS "Unknown build type, using default (${default_build_type})") |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
157 |
endif () |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
158 |
else (CMAKE_BUILD_TYPE) |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
159 |
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
|
160 |
endif (CMAKE_BUILD_TYPE) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
161 |
|
2406 | 162 |
|
7030
09984acadece
invert LUA symbol meaning and avoid hints when compiling without it
koda
parents:
7029
diff
changeset
|
163 |
#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
|
164 |
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
|
165 |
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
|
166 |
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
|
167 |
set(CMAKE_CXX_FLAGS ${CMAKE_C_FLAGS}) |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
168 |
set(CMAKE_CXX_FLAGS_RELEASE ${CMAKE_C_FLAGS_RELEASE}) |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
169 |
set(CMAKE_CXX_FLAGS_DEBUG ${CMAKE_C_FLAGS_DEBUG}) |
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
170 |
|
7397
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
171 |
#parse additional parameters |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
172 |
if(FPFLAGS OR GHFLAGS) |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
173 |
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
|
174 |
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
|
175 |
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
|
176 |
else() |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
177 |
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
|
178 |
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
|
179 |
endif() |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
180 |
endif() |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
181 |
|
7816 | 182 |
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
|
183 |
set(haskell_flags "-O2" ${ghflags_parsed} ${haskell_flags}) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
184 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
185 |
#get BUILD_TYPE and enable/disable optimisation |
7709
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
186 |
if(CMAKE_BUILD_TYPE MATCHES "DEBUG") |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
187 |
message(STATUS "Building Debug flavour") |
7820 | 188 |
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
|
189 |
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
|
190 |
else() |
7709
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
191 |
message(STATUS "Building Release flavour") |
7220 | 192 |
# set(pascal_flags "-O3" "-OpPENTIUM4" "-CfSSE3" "-Xs" "-Si" ${pascal_flags}) |
193 |
set(pascal_flags "-Os" "-Ooregvar" "-Xs" "-Si" ${pascal_flags}) |
|
194 |
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
|
195 |
endif() |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
196 |
|
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
197 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
198 |
#finish setting paths |
266 | 199 |
if(DEFINED DATA_INSTALL_DIR) |
7220 | 200 |
set(SHAREPATH ${DATA_INSTALL_DIR}/hedgewars/) |
2652 | 201 |
else() |
7220 | 202 |
set(SHAREPATH share/hedgewars/) |
2652 | 203 |
endif() |
220 | 204 |
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
|
205 |
set(LIBRARY_OUTPUT_PATH ${EXECUTABLE_OUTPUT_PATH}) |
184 | 206 |
|
271 | 207 |
|
7973 | 208 |
#Haskell compiler discovery (for server and webgl |
209 |
if((NOT NOSERVER) OR WEBGL) |
|
7220 | 210 |
if(GHC) |
211 |
set(ghc_executable ${GHC}) |
|
212 |
else() |
|
213 |
find_program(ghc_executable ghc) |
|
214 |
endif() |
|
5053 | 215 |
|
7220 | 216 |
if(ghc_executable) |
7973 | 217 |
exec_program(${ghc_executable} ARGS "-V" OUTPUT_VARIABLE ghc_version_long) |
218 |
string(REGEX REPLACE ".*([0-9]+\\.[0-9]+\\.[0-9]+)" "\\1" ghc_version "${ghc_version_long}") |
|
219 |
message(STATUS "Found GHC: ${ghc_executable} (version ${ghc_version})") |
|
7220 | 220 |
else() |
7973 | 221 |
message(STATUS "Could NOT find GHC, needed by gameServer and pas2c") |
7220 | 222 |
endif() |
7973 | 223 |
endif() |
224 |
||
225 |
||
226 |
#check gameServer |
|
227 |
if((ghc_executable) AND (NOT NOSERVER) AND (NOT WEBGL)) |
|
228 |
set(HAVE_NETSERVER true) |
|
229 |
add_subdirectory(gameServer) |
|
7223 | 230 |
else() |
7973 | 231 |
message(STATUS "Skipping gameServer target") |
7220 | 232 |
set(HAVE_NETSERVER false) |
7223 | 233 |
endif() |
1415
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1370
diff
changeset
|
234 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
235 |
|
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
236 |
#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
|
237 |
find_package(Lua) |
7973 | 238 |
if(LUA_FOUND AND (NOT WEBGL)) |
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
|
239 |
message(STATUS "Found LUA: ${LUA_DEFAULT}") |
7223 | 240 |
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
|
241 |
message(STATUS "LUA will be provided by the bundled sources") |
7220 | 242 |
add_subdirectory(misc/liblua) |
7223 | 243 |
#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
|
244 |
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
|
245 |
endif() |
7223 | 246 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
247 |
|
7973 | 248 |
if(WEBGL) |
249 |
if (NOT ghc_executable) |
|
250 |
message(FATAL_ERROR "A Haskell compiler is required to build the WebGL port") |
|
251 |
endif() |
|
252 |
#pascal to c converter |
|
253 |
add_subdirectory(tools/pas2c) |
|
254 |
else() |
|
255 |
#main engine |
|
256 |
add_subdirectory(hedgewars) |
|
5053 | 257 |
|
7973 | 258 |
#Android related build scripts |
259 |
if(ANDROID) |
|
260 |
#run cmake -DANDROID=1 to enable this |
|
261 |
add_subdirectory(project_files/Android-build) |
|
262 |
endif() |
|
263 |
||
264 |
#TODO: when ANDROID, BUILD_ENGINE_LIBRARY should be set |
|
265 |
if(NOT (BUILD_ENGINE_LIBRARY OR ANDROID OR WEBGL)) |
|
266 |
add_subdirectory(bin) |
|
267 |
add_subdirectory(misc/quazip) |
|
268 |
add_subdirectory(QTfrontend) |
|
269 |
add_subdirectory(share) |
|
270 |
add_subdirectory(tools) |
|
271 |
endif() |
|
6025
cac1d5601d7c
reviewed the build system and parts of the previous merge, performed some code cleanup
koda
parents:
6023
diff
changeset
|
272 |
endif() |
5381
8f95038f3f75
Removed protocol check, using CMake now to setup the building scripts using Templates/* removed old scripts
Xeli
parents:
5223
diff
changeset
|
273 |
|
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
274 |
|
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
275 |
|
5405 | 276 |
# CPack variables |
3338
dee9beba85cc
patch by raptor (polished by me) to allow tiger/xcode24 compilation
koda
parents:
3306
diff
changeset
|
277 |
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Hedgewars, a free turn-based strategy") |
2827 | 278 |
set(CPACK_PACKAGE_VENDOR "Hedgewars Project") |
907 | 279 |
set(CPACK_PACKAGE_FILE_NAME "hedgewars-${HEDGEWARS_VERSION}") |
280 |
set(CPACK_SOURCE_PACKAGE_FILE_NAME "hedgewars-src-${HEDGEWARS_VERSION}") |
|
1459 | 281 |
set(CPACK_SOURCE_GENERATOR "TBZ2") |
1173
70b0acd4548c
Revert accidental nsis installer generator regression
unc0rr
parents:
1159
diff
changeset
|
282 |
set(CPACK_PACKAGE_EXECUTABLES "hedgewars" "hedgewars") |
458 | 283 |
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/COPYING") |
907 | 284 |
set(CPACK_PACKAGE_INSTALL_DIRECTORY "Hedgewars ${HEDGEWARS_VERSION}") |
184 | 285 |
|
286 |
if(WIN32 AND NOT UNIX) |
|
7220 | 287 |
set(CPACK_NSIS_DISPLAY_NAME "Hedgewars") |
288 |
set(CPACK_NSIS_HELP_LINK "http://www.hedgewars.org/") |
|
289 |
set(CPACK_NSIS_URL_INFO_ABOUT "http://www.hedgewars.org/") |
|
290 |
set(CPACK_NSIS_CONTACT "unC0Rr@gmail.com") |
|
291 |
set(CPACK_NSIS_MODIFY_PATH OFF) |
|
292 |
set(CPACK_GENERATOR "ZIP;NSIS") |
|
293 |
set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "hedgewars") |
|
184 | 294 |
else(WIN32 AND NOT UNIX) |
7220 | 295 |
set(CPACK_STRIP_FILES "bin/hedgewars;bin/hwengine") |
184 | 296 |
endif(WIN32 AND NOT UNIX) |
297 |
||
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
298 |
set(CPACK_SOURCE_IGNORE_FILES |
7220 | 299 |
"~" |
300 |
"\\\\.hg" |
|
301 |
"\\\\.svn" |
|
302 |
"\\\\.exe$" |
|
303 |
"\\\\.a$" |
|
304 |
"\\\\.dll$" |
|
305 |
"\\\\.xcf$" |
|
306 |
"\\\\.cxx$" |
|
307 |
"\\\\.db$" |
|
308 |
"\\\\.dof$" |
|
309 |
"\\\\.layout$" |
|
310 |
"\\\\.zip$" |
|
311 |
"\\\\.gz$" |
|
312 |
"\\\\.bz2$" |
|
313 |
"\\\\.tmp$" |
|
314 |
"\\\\.core$" |
|
315 |
"\\\\.sh$" |
|
316 |
"\\\\.sifz$" |
|
317 |
"\\\\.svg$" |
|
318 |
"\\\\.svgz$" |
|
319 |
"\\\\.ppu$" |
|
320 |
"\\\\.psd$" |
|
321 |
"\\\\.o$" |
|
322 |
"Makefile" |
|
323 |
"Doxyfile" |
|
324 |
"CMakeFiles" |
|
325 |
"debug" |
|
326 |
"release$" |
|
327 |
"Debug$" |
|
328 |
"Release$" |
|
329 |
"proto\\\\.inc$" |
|
330 |
"hwconsts\\\\.cpp$" |
|
331 |
"playlist\\\\.inc$" |
|
332 |
"CPack" |
|
333 |
"cmake_install\\\\.cmake$" |
|
334 |
"config\\\\.inc$" |
|
335 |
"hwengine\\\\.desktop$" |
|
336 |
"CMakeCache\\\\.txt$" |
|
337 |
# "^${CMAKE_CURRENT_SOURCE_DIR}/misc/libopenalbridge" |
|
338 |
# "^${CMAKE_CURRENT_SOURCE_DIR}/misc/libfreetype" |
|
339 |
"^${CMAKE_CURRENT_SOURCE_DIR}/misc/liblua" |
|
340 |
# "^${CMAKE_CURRENT_SOURCE_DIR}/misc/libtremor" |
|
341 |
"^${CMAKE_CURRENT_SOURCE_DIR}/project_files/HedgewarsMobile/" |
|
342 |
"^${CMAKE_CURRENT_SOURCE_DIR}/bin/[a-z]" |
|
343 |
"^${CMAKE_CURRENT_SOURCE_DIR}/tools/templates" |
|
344 |
"^${CMAKE_CURRENT_SOURCE_DIR}/doc" |
|
345 |
"^${CMAKE_CURRENT_SOURCE_DIR}/templates" |
|
346 |
"^${CMAKE_CURRENT_SOURCE_DIR}/Graphics" |
|
347 |
"^${CMAKE_CURRENT_SOURCE_DIR}/realtest" |
|
348 |
"^${CMAKE_CURRENT_SOURCE_DIR}/tmp" |
|
349 |
"^${CMAKE_CURRENT_SOURCE_DIR}/utils" |
|
350 |
"^${CMAKE_CURRENT_SOURCE_DIR}/share/hedgewars/Data/Maps/test" |
|
351 |
"^${CMAKE_CURRENT_SOURCE_DIR}/share/hedgewars/Data/Themes/ethereal" |
|
352 |
"^${CMAKE_CURRENT_SOURCE_DIR}/install_manifest.txt" |
|
353 |
"^${CMAKE_CURRENT_SOURCE_DIR}/CMakeCache.txt" |
|
354 |
"^${CMAKE_CURRENT_SOURCE_DIR}/hedgewars\\\\." |
|
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
355 |
) |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
356 |
|
184 | 357 |
include(CPack) |
5407 | 358 |