author | koda |
Wed, 12 Jun 2013 00:07:19 +0200 | |
changeset 9200 | 37c37026f7ec |
parent 9198 | 48b92ff6238f |
child 9204 | 1c233176fffd |
permissions | -rw-r--r-- |
184 | 1 |
project(hedgewars) |
2 |
||
5407 | 3 |
#initialise cmake environment |
9198 | 4 |
cmake_minimum_required(VERSION 2.6.4) |
9165
7b0d5388abc4
stack-protector flag needs to be passed to the linker as well
koda
parents:
9152
diff
changeset
|
5 |
foreach(hwpolicy CMP0003 CMP0012 CMP0017 CMP0018) |
8146 | 6 |
if(POLICY ${hwpolicy}) |
7 |
cmake_policy(SET ${hwpolicy} NEW) |
|
8 |
endif() |
|
9 |
endforeach() |
|
8611
90f445317e8a
support WARNING message status on cmake 2.6 (bug 524)
koda
parents:
8597
diff
changeset
|
10 |
|
8674
fff355ba2902
our cmake modules have become good enough, prefer them over system ones
koda
parents:
8673
diff
changeset
|
11 |
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake_modules") |
8673 | 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 |
|
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
14 |
#possible cmake configuration |
8687 | 15 |
option(NOSERVER "Disable gameServer build (off)]" OFF) |
16 |
option(NOPNG "Disable screenshoot compression (off)" OFF) |
|
17 |
option(NOVIDEOREC "Disable video recording (off)" OFF) |
|
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 |
|
9192
a8a717cf4a66
use BUILD_SHARED_LIBS to control whether a library is shared or static, make our bundled physfs library check for this configuration
koda
parents:
9190
diff
changeset
|
19 |
#libraries are built shared unless explicitly added as a static |
a8a717cf4a66
use BUILD_SHARED_LIBS to control whether a library is shared or static, make our bundled physfs library check for this configuration
koda
parents:
9190
diff
changeset
|
20 |
option(BUILD_SHARED_LIBS "Build libraries as shared modules (on)" ON) |
8549
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
21 |
#set this to ON when 2.1.0 becomes more widespread (and only for linux) |
9096
b3041025c271
fix the cmake flag PHYSFS_SYSTEM being called SYSTEM_PHYSFS in the code
sheepluva
parents:
9091
diff
changeset
|
22 |
option(PHYSFS_SYSTEM "Use system physfs (off)" OFF) |
8549
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
23 |
|
8687 | 24 |
option(BUILD_ENGINE_LIBRARY "Enable hwengine library (off)" OFF) |
25 |
option(ANDROID "Enable Android build (off)" OFF) |
|
26 |
||
27 |
if(UNIX AND NOT APPLE) |
|
28 |
option(MINIMAL_FLAGS "Respect system flags as much as possible (off)" OFF) |
|
29 |
else() |
|
8659 | 30 |
option(NOAUTOUPDATE "Disable OS X Sparkle update checking" OFF) |
31 |
endif() |
|
8549
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
32 |
|
8333
416cb5e5a405
move DATA_INSTALL_DIR to the configurable options section
koda
parents:
8331
diff
changeset
|
33 |
set(FPFLAGS "" CACHE STRING "Additional Freepascal flags") |
416cb5e5a405
move DATA_INSTALL_DIR to the configurable options section
koda
parents:
8331
diff
changeset
|
34 |
set(GHFLAGS "" CACHE STRING "Additional Haskell flags") |
416cb5e5a405
move DATA_INSTALL_DIR to the configurable options section
koda
parents:
8331
diff
changeset
|
35 |
if(UNIX AND NOT APPLE) |
416cb5e5a405
move DATA_INSTALL_DIR to the configurable options section
koda
parents:
8331
diff
changeset
|
36 |
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
|
37 |
endif() |
8104
09c38cdf380d
show console on win when debugging to see frontend messages
koda
parents:
8093
diff
changeset
|
38 |
|
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 |
|
5405 | 40 |
#versioning |
5407 | 41 |
set(CPACK_PACKAGE_VERSION_MAJOR 0) |
42 |
set(CPACK_PACKAGE_VERSION_MINOR 9) |
|
9141
e391e9a19b1c
Bump protocol and version (game desync would be triggered by b70352db5675, 2ae44c4381cd - other revisions probably safe)
nemo
parents:
9106
diff
changeset
|
43 |
set(CPACK_PACKAGE_VERSION_PATCH 20) |
e391e9a19b1c
Bump protocol and version (game desync would be triggered by b70352db5675, 2ae44c4381cd - other revisions probably safe)
nemo
parents:
9106
diff
changeset
|
44 |
set(HEDGEWARS_PROTO_VER 46) |
5407 | 45 |
set(HEDGEWARS_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}") |
9150
79c58ff0d4b1
move platform specific and revision info code into separate cmake modules
koda
parents:
9141
diff
changeset
|
46 |
include(${CMAKE_MODULE_PATH}/revinfo.cmake) |
5405 | 47 |
|
8650 | 48 |
message(STATUS "Building ${HEDGEWARS_VERSION}-r${HEDGEWARS_REVISION} (${HEDGEWARS_HASH})") |
907 | 49 |
|
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
50 |
|
9150
79c58ff0d4b1
move platform specific and revision info code into separate cmake modules
koda
parents:
9141
diff
changeset
|
51 |
#platform specific init code |
79c58ff0d4b1
move platform specific and revision info code into separate cmake modules
koda
parents:
9141
diff
changeset
|
52 |
include(${CMAKE_MODULE_PATH}/platform.cmake) |
9190 | 53 |
include(${CMAKE_MODULE_PATH}/paths.cmake) |
2015 | 54 |
|
2406 | 55 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
56 |
#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
|
57 |
if (CMAKE_BUILD_TYPE) |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
58 |
string (TOUPPER ${CMAKE_BUILD_TYPE} CMAKE_BUILD_TYPE) |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
59 |
if ( NOT( (CMAKE_BUILD_TYPE MATCHES "RELEASE") OR (CMAKE_BUILD_TYPE MATCHES "DEBUG") ) ) |
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
60 |
set (CMAKE_BUILD_TYPE ${default_build_type} CACHE STRING "Build type (Debug/Release)" FORCE) |
7709
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
61 |
message (STATUS "Unknown build type, using default (${default_build_type})") |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
62 |
endif () |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
63 |
else (CMAKE_BUILD_TYPE) |
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
64 |
set (CMAKE_BUILD_TYPE ${default_build_type} CACHE STRING "Build type (Debug/Release)" FORCE) |
7709
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
65 |
endif (CMAKE_BUILD_TYPE) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
66 |
|
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
67 |
|
9152 | 68 |
#perform safe check that enable/disable compilation features |
69 |
include(${CMAKE_MODULE_PATH}/compilerchecks.cmake) |
|
70 |
||
7944 | 71 |
#set default flags values for all projects (unless MINIMAL_FLAGS is true) |
8347 | 72 |
if(NOT ${MINIMAL_FLAGS}) |
8348 | 73 |
set(CMAKE_C_FLAGS "-pipe ${CMAKE_C_FLAGS}") |
74 |
set(CMAKE_C_FLAGS_RELEASE "-w -Os -fomit-frame-pointer ${CMAKE_C_FLAGS_RELEASE}") |
|
75 |
set(CMAKE_C_FLAGS_DEBUG "-Wall -O0 -g -DDEBUG ${CMAKE_C_FLAGS_DEBUG}") |
|
7944 | 76 |
set(CMAKE_CXX_FLAGS ${CMAKE_C_FLAGS}) |
77 |
set(CMAKE_CXX_FLAGS_RELEASE ${CMAKE_C_FLAGS_RELEASE}) |
|
78 |
set(CMAKE_CXX_FLAGS_DEBUG ${CMAKE_C_FLAGS_DEBUG}) |
|
79 |
else() |
|
80 |
#CMake adds a lot of additional configuration flags, so let's clear them up |
|
81 |
set(CMAKE_C_FLAGS_RELEASE "") |
|
82 |
set(CMAKE_C_FLAGS_DEBUG "-Wall -DDEBUG") |
|
83 |
set(CMAKE_CXX_FLAGS_RELEASE "") |
|
84 |
set(CMAKE_CXX_FLAGS_DEBUG "-Wall -DDEBUG") |
|
85 |
endif() |
|
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
86 |
|
7397
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
87 |
#parse additional parameters |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
88 |
if(FPFLAGS OR GHFLAGS) |
9151 | 89 |
if(CMAKE_VERSION VERSION_GREATER "2.6") |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
90 |
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
|
91 |
separate_arguments(ghflags_parsed UNIX_COMMAND ${GHFLAGS}) |
9104 | 92 |
else() |
9151 | 93 |
message("*** 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
|
94 |
endif() |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
95 |
endif() |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
96 |
|
8707 | 97 |
list(APPEND pascal_flags ${fpflags_parsed} # user flags |
98 |
"-B" # compile all units |
|
99 |
"-vm4079,4080,4081" # fpc verbosity output format |
|
100 |
"-FE${PROJECT_BINARY_DIR}/bin" # fpc binaries output directory |
|
8706 | 101 |
"-FU${PROJECT_BINARY_DIR}/hedgewars" # fpc units output directory |
8707 | 102 |
"-Fl${PROJECT_BINARY_DIR}/bin" # fpc linking directory (win/unix) |
103 |
"-Fi${PROJECT_BINARY_DIR}/hedgewars" # fpc .inc path (for out of source builds) |
|
104 |
"-k-L${PROJECT_BINARY_DIR}/bin" # ld linking directory (unix/osx) |
|
105 |
"-Cs2000000" # stack size |
|
106 |
"-vewnq" # fpc output verbosity |
|
107 |
"-dDEBUGFILE" # macro for engine output |
|
8283 | 108 |
) |
8707 | 109 |
list(APPEND haskell_flags ${ghflags_parsed} # user flags |
110 |
"-O2" # optimise for faster code |
|
8644 | 111 |
) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
112 |
|
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
113 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
114 |
#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
|
115 |
message(STATUS "Using ${CMAKE_BUILD_TYPE} configuration") |
7709
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
116 |
if(CMAKE_BUILD_TYPE MATCHES "DEBUG") |
8707 | 117 |
list(APPEND pascal_flags "-O-" # disable all optimisations |
118 |
"-g" # enable debug symbols |
|
119 |
"-gl" # add line info to bt |
|
120 |
"-gv" # allow valgrind |
|
8555 | 121 |
) |
8707 | 122 |
list(APPEND haskell_flags "-Wall" # all warnings |
123 |
"-debug" # debug mode |
|
124 |
"-dcore-lint" # internal sanity check |
|
8644 | 125 |
) |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
126 |
else() |
8707 | 127 |
list(APPEND pascal_flags "-Os" # optimise for size |
128 |
"-Xs" # strip binary |
|
129 |
"-Si" # turn on inlining |
|
8555 | 130 |
) |
8707 | 131 |
list(APPEND haskell_flags "-w" # no warnings |
8644 | 132 |
) |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
133 |
endif() |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
134 |
|
8686
d303da4568b7
introduce find_package_or_fail/disable to group together similar cmake code
koda
parents:
8683
diff
changeset
|
135 |
include(${CMAKE_MODULE_PATH}/utils.cmake) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
136 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
137 |
#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
|
138 |
find_package(Lua) |
7233
225179f64fd8
LUA_FOUND should surely be set only if the system lua was found.
nemo
parents:
7226
diff
changeset
|
139 |
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
|
140 |
message(STATUS "Found LUA: ${LUA_DEFAULT}") |
7223 | 141 |
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
|
142 |
message(STATUS "LUA will be provided by the bundled sources") |
7220 | 143 |
add_subdirectory(misc/liblua) |
8093
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
144 |
#linking with liblua.a requires system readline |
8347 | 145 |
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
|
146 |
endif() |
7223 | 147 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
148 |
|
8544
d610e692e2f6
perform a version check before including physfs (maybe there is a better place for this?) and allow overriding automagic search
koda
parents:
8540
diff
changeset
|
149 |
#physfs discovery |
9096
b3041025c271
fix the cmake flag PHYSFS_SYSTEM being called SYSTEM_PHYSFS in the code
sheepluva
parents:
9091
diff
changeset
|
150 |
if (${PHYSFS_SYSTEM}) |
8549
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
151 |
if (NOT PHYSFS_LIBRARY OR NOT PHYSFS_INCLUDE_DIR) |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
152 |
find_package(PhysFS) |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
153 |
endif() |
8544
d610e692e2f6
perform a version check before including physfs (maybe there is a better place for this?) and allow overriding automagic search
koda
parents:
8540
diff
changeset
|
154 |
|
8549
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
155 |
find_file(physfs_h physfs.h ${PHYSFS_INCLUDE_DIR}) |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
156 |
if(physfs_h) |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
157 |
file(STRINGS ${physfs_h} physfs_majorversion REGEX "PHYSFS_VER_MAJOR[\t' ']+[0-9]+") |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
158 |
file(STRINGS ${physfs_h} physfs_minorversion REGEX "PHYSFS_VER_MINOR[\t' ']+[0-9]+") |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
159 |
file(STRINGS ${physfs_h} physfs_patchversion REGEX "PHYSFS_VER_PATCH[\t' ']+[0-9]+") |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
160 |
string(REGEX MATCH "([0-9]+)" physfs_majorversion "${physfs_majorversion}") |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
161 |
string(REGEX MATCH "([0-9]+)" physfs_minorversion "${physfs_minorversion}") |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
162 |
string(REGEX MATCH "([0-9]+)" physfs_patchversion "${physfs_patchversion}") |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
163 |
set(physfs_detected_ver "${physfs_majorversion}.${physfs_minorversion}.${physfs_patchversion}") |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
164 |
|
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
165 |
if (physfs_detected_ver VERSION_LESS "2.1.0") |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
166 |
message(FATAL_ERROR "PhysFS version is too old (dected ${physfs_detected_ver}, required 2.1.0)") |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
167 |
set(physfs_too_old true) |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
168 |
endif() |
8544
d610e692e2f6
perform a version check before including physfs (maybe there is a better place for this?) and allow overriding automagic search
koda
parents:
8540
diff
changeset
|
169 |
endif() |
d610e692e2f6
perform a version check before including physfs (maybe there is a better place for this?) and allow overriding automagic search
koda
parents:
8540
diff
changeset
|
170 |
|
8549
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
171 |
if (NOT PHYSFS_LIBRARY OR NOT PHYSFS_INCLUDE_DIR) |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
172 |
message(FATAL_ERROR "Missing PhysFS! Rerun cmake with -DPHYSFS_SYSTEM=off to build the internal version") |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
173 |
endif() |
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
174 |
else() |
8528 | 175 |
message(STATUS "PhysFS will be provided by the bundled sources") |
8549
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
176 |
set(physfs_output_name "hw_physfs") |
8528 | 177 |
add_subdirectory(misc/libphysfs) |
8558 | 178 |
#-XLA is a beta fpc flag that renames libraries before passing them to the linker |
179 |
#we also have to pass PHYSFS_INTERNAL to satisfy windows runtime requirements |
|
180 |
#(should be harmless on other platforms) |
|
181 |
list(APPEND pascal_flags "-XLAphysfs=${physfs_output_name}" "-dPHYSFS_INTERNAL") |
|
8528 | 182 |
endif() |
8549
af104e59ea8e
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not
koda
parents:
8544
diff
changeset
|
183 |
|
8688 | 184 |
find_package_or_disable_msg(FFMPEG NOVIDEOREC "Video recording will not be built") |
8666
1652c1d9adc8
rework ffmpeg/libav/videorec linking and their cmake discovery
koda
parents:
8665
diff
changeset
|
185 |
|
8671 | 186 |
#physfs helper library |
8528 | 187 |
add_subdirectory(misc/libphyslayer) |
8283 | 188 |
|
8671 | 189 |
#server |
190 |
if(NOT NOSERVER) |
|
191 |
add_subdirectory(gameServer) |
|
192 |
endif() |
|
193 |
||
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
194 |
#main engine |
184 | 195 |
add_subdirectory(hedgewars) |
5053 | 196 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
197 |
#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
|
198 |
if(ANDROID) |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
199 |
#run cmake -DANDROID=1 to enable this |
7220 | 200 |
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
|
201 |
endif() |
5381
8f95038f3f75
Removed protocol check, using CMake now to setup the building scripts using Templates/* removed old scripts
Xeli
parents:
5223
diff
changeset
|
202 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
203 |
#TODO: when ANDROID, BUILD_ENGINE_LIBRARY should be set |
8082
675372256a01
lotsa hackery to get frontend somehow link libengine...
koda
parents:
8078
diff
changeset
|
204 |
if(NOT ANDROID) |
7220 | 205 |
add_subdirectory(bin) |
206 |
add_subdirectory(QTfrontend) |
|
207 |
add_subdirectory(share) |
|
208 |
add_subdirectory(tools) |
|
3515 | 209 |
endif() |
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
210 |
|
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
211 |
|
9091
bafadc6b4516
change cpack configuration file name so that it's not excluded by 'make package_source'
koda
parents:
9086
diff
changeset
|
212 |
include(${CMAKE_MODULE_PATH}/cpackvars.cmake) |
184 | 213 |