author | koda |
Tue, 18 Jun 2013 22:39:57 +0200 | |
branch | webgl |
changeset 9259 | 872dd30deb7b |
parent 9246 | 75f430ebeb74 |
child 9273 | bd95c9db4f0f |
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") |
8775
3cad01db0bae
apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents:
8770
diff
changeset
|
12 |
include(${CMAKE_MODULE_PATH}/utils.cmake) |
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 |
|
9208
acb2492288e5
heavily rework lua discovery and linking, needs testing but it's more similar to what we do for other libraries now
koda
parents:
9205
diff
changeset
|
24 |
if(WIN32 OR APPLE) |
acb2492288e5
heavily rework lua discovery and linking, needs testing but it's more similar to what we do for other libraries now
koda
parents:
9205
diff
changeset
|
25 |
option(LUA_SYSTEM "Use system lua (off)" OFF) |
acb2492288e5
heavily rework lua discovery and linking, needs testing but it's more similar to what we do for other libraries now
koda
parents:
9205
diff
changeset
|
26 |
else() |
acb2492288e5
heavily rework lua discovery and linking, needs testing but it's more similar to what we do for other libraries now
koda
parents:
9205
diff
changeset
|
27 |
option(LUA_SYSTEM "Use system lua (on)" ON) |
acb2492288e5
heavily rework lua discovery and linking, needs testing but it's more similar to what we do for other libraries now
koda
parents:
9205
diff
changeset
|
28 |
endif() |
acb2492288e5
heavily rework lua discovery and linking, needs testing but it's more similar to what we do for other libraries now
koda
parents:
9205
diff
changeset
|
29 |
|
8687 | 30 |
option(BUILD_ENGINE_LIBRARY "Enable hwengine library (off)" OFF) |
31 |
option(ANDROID "Enable Android build (off)" OFF) |
|
32 |
||
33 |
if(UNIX AND NOT APPLE) |
|
34 |
option(MINIMAL_FLAGS "Respect system flags as much as possible (off)" OFF) |
|
35 |
else() |
|
8659 | 36 |
option(NOAUTOUPDATE "Disable OS X Sparkle update checking" OFF) |
37 |
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
|
38 |
|
8096 | 39 |
option(WEBGL "Enable WebGL build (implies NOPASCAL) [default: off]" OFF) |
40 |
option(NOPASCAL "Compile hwengine as native C [default: off]" ${WEBGL}) |
|
8833 | 41 |
option(GL2 "Enable OpenGL 2 rendering [default: off]" OFF) |
8096 | 42 |
|
8333
416cb5e5a405
move DATA_INSTALL_DIR to the configurable options section
koda
parents:
8331
diff
changeset
|
43 |
set(FPFLAGS "" CACHE STRING "Additional Freepascal flags") |
416cb5e5a405
move DATA_INSTALL_DIR to the configurable options section
koda
parents:
8331
diff
changeset
|
44 |
set(GHFLAGS "" CACHE STRING "Additional Haskell flags") |
416cb5e5a405
move DATA_INSTALL_DIR to the configurable options section
koda
parents:
8331
diff
changeset
|
45 |
if(UNIX AND NOT APPLE) |
416cb5e5a405
move DATA_INSTALL_DIR to the configurable options section
koda
parents:
8331
diff
changeset
|
46 |
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
|
47 |
endif() |
8104
09c38cdf380d
show console on win when debugging to see frontend messages
koda
parents:
8093
diff
changeset
|
48 |
|
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 |
|
5405 | 50 |
#versioning |
5407 | 51 |
set(CPACK_PACKAGE_VERSION_MAJOR 0) |
52 |
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
|
53 |
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
|
54 |
set(HEDGEWARS_PROTO_VER 46) |
5407 | 55 |
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
|
56 |
include(${CMAKE_MODULE_PATH}/revinfo.cmake) |
5405 | 57 |
|
8650 | 58 |
message(STATUS "Building ${HEDGEWARS_VERSION}-r${HEDGEWARS_REVISION} (${HEDGEWARS_HASH})") |
907 | 59 |
|
9220 | 60 |
#general utilities |
61 |
include(${CMAKE_MODULE_PATH}/utils.cmake) |
|
9150
79c58ff0d4b1
move platform specific and revision info code into separate cmake modules
koda
parents:
9141
diff
changeset
|
62 |
#platform specific init code |
79c58ff0d4b1
move platform specific and revision info code into separate cmake modules
koda
parents:
9141
diff
changeset
|
63 |
include(${CMAKE_MODULE_PATH}/platform.cmake) |
9190 | 64 |
include(${CMAKE_MODULE_PATH}/paths.cmake) |
2015 | 65 |
|
2406 | 66 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
67 |
#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
|
68 |
if (CMAKE_BUILD_TYPE) |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
69 |
string (TOUPPER ${CMAKE_BUILD_TYPE} CMAKE_BUILD_TYPE) |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
70 |
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
|
71 |
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
|
72 |
message (STATUS "Unknown build type, using default (${default_build_type})") |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
73 |
endif () |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
74 |
else (CMAKE_BUILD_TYPE) |
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
75 |
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
|
76 |
endif (CMAKE_BUILD_TYPE) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
77 |
|
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
78 |
|
9152 | 79 |
#perform safe check that enable/disable compilation features |
80 |
include(${CMAKE_MODULE_PATH}/compilerchecks.cmake) |
|
81 |
||
7944 | 82 |
#set default flags values for all projects (unless MINIMAL_FLAGS is true) |
8347 | 83 |
if(NOT ${MINIMAL_FLAGS}) |
8348 | 84 |
set(CMAKE_C_FLAGS "-pipe ${CMAKE_C_FLAGS}") |
85 |
set(CMAKE_C_FLAGS_RELEASE "-w -Os -fomit-frame-pointer ${CMAKE_C_FLAGS_RELEASE}") |
|
9212 | 86 |
set(CMAKE_C_FLAGS_DEBUG "-Wall -O0 -g ${CMAKE_C_FLAGS_DEBUG}") |
9211 | 87 |
set(CMAKE_CXX_FLAGS "-pipe ${CMAKE_CXX_FLAGS}") |
88 |
set(CMAKE_CXX_FLAGS_RELEASE "-w -Os -fomit-frame-pointer ${CMAKE_CXX_FLAGS_RELEASE}") |
|
9212 | 89 |
set(CMAKE_CXX_FLAGS_DEBUG "-Wall -O0 -g ${CMAKE_CXX_FLAGS_DEBUG}") |
7944 | 90 |
else() |
91 |
#CMake adds a lot of additional configuration flags, so let's clear them up |
|
92 |
set(CMAKE_C_FLAGS_RELEASE "") |
|
9212 | 93 |
set(CMAKE_C_FLAGS_DEBUG "-Wall") |
7944 | 94 |
set(CMAKE_CXX_FLAGS_RELEASE "") |
9212 | 95 |
set(CMAKE_CXX_FLAGS_DEBUG "-Wall") |
7944 | 96 |
endif() |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
97 |
|
7397
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
98 |
#parse additional parameters |
8796 | 99 |
if(FPFLAGS) |
100 |
add_flag_prepend(CMAKE_Pascal_FLAGS ${FPFLAGS}) |
|
101 |
endif() |
|
102 |
if(GHFLAGS) |
|
8611
90f445317e8a
support WARNING message status on cmake 2.6 (bug 524)
koda
parents:
8597
diff
changeset
|
103 |
if(${allow_parse_args}) |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
104 |
separate_arguments(ghflags_parsed UNIX_COMMAND ${GHFLAGS}) |
9104 | 105 |
else() |
9244 | 106 |
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
|
107 |
endif() |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
108 |
endif() |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
109 |
|
8775
3cad01db0bae
apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents:
8770
diff
changeset
|
110 |
|
8707 | 111 |
list(APPEND haskell_flags ${ghflags_parsed} # user flags |
112 |
"-O2" # optimise for faster code |
|
8644 | 113 |
) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
114 |
|
8821
e85ff6e298b5
adjust verbosity, move debug/release variables in the right section
koda
parents:
8806
diff
changeset
|
115 |
#-vm4079,4080,4081 |
e85ff6e298b5
adjust verbosity, move debug/release variables in the right section
koda
parents:
8806
diff
changeset
|
116 |
add_flag_append(CMAKE_Pascal_FLAGS "-Cs2000000") |
e85ff6e298b5
adjust verbosity, move debug/release variables in the right section
koda
parents:
8806
diff
changeset
|
117 |
add_flag_append(CMAKE_Pascal_FLAGS_DEBUG "-O- -gv") |
8802
ed984e06b435
enable fpc inlining only in release mode only if using fpc > 2.6
koda
parents:
8798
diff
changeset
|
118 |
add_flag_append(CMAKE_Pascal_FLAGS_RELEASE "-Os -Xs") |
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
119 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
120 |
#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
|
121 |
message(STATUS "Using ${CMAKE_BUILD_TYPE} configuration") |
7709
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
122 |
if(CMAKE_BUILD_TYPE MATCHES "DEBUG") |
8707 | 123 |
list(APPEND haskell_flags "-Wall" # all warnings |
124 |
"-debug" # debug mode |
|
125 |
"-dcore-lint" # internal sanity check |
|
9244 | 126 |
"-fno-warn-unused-do-bind" |
8644 | 127 |
) |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
128 |
else() |
8707 | 129 |
list(APPEND haskell_flags "-w" # no warnings |
8644 | 130 |
) |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
131 |
endif() |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
132 |
|
9238 | 133 |
|
134 |
#build engine without freepascal |
|
135 |
if(${NOPASCAL}) |
|
9236 | 136 |
find_package(Clang) |
9246 | 137 |
|
138 |
if(CLANG_VERSION VERSION_LESS "3.0") |
|
139 |
message(FATAL_ERROR "LLVM/Clang compiler required version is 3.0 but version ${CLANG_VERSION} was found!") |
|
9238 | 140 |
endif() |
9246 | 141 |
|
142 |
set(CMAKE_C_COMPILER ${CLANG_EXECUTABLE}) |
|
143 |
set(CMAKE_CXX_COMPILER ${CLANG_EXECUTABLE}) |
|
9236 | 144 |
endif(${NOPASCAL}) |
145 |
||
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
146 |
|
9238 | 147 |
#server |
148 |
if(NOT NOSERVER) |
|
7973 | 149 |
add_subdirectory(gameServer) |
7223 | 150 |
endif() |
1415
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1370
diff
changeset
|
151 |
|
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
152 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
153 |
#lua discovery |
9208
acb2492288e5
heavily rework lua discovery and linking, needs testing but it's more similar to what we do for other libraries now
koda
parents:
9205
diff
changeset
|
154 |
if (${LUA_SYSTEM}) |
acb2492288e5
heavily rework lua discovery and linking, needs testing but it's more similar to what we do for other libraries now
koda
parents:
9205
diff
changeset
|
155 |
if (NOT LUA_LIBRARY OR NOT LUA_INCLUDE_DIR) |
acb2492288e5
heavily rework lua discovery and linking, needs testing but it's more similar to what we do for other libraries now
koda
parents:
9205
diff
changeset
|
156 |
find_package(Lua) |
acb2492288e5
heavily rework lua discovery and linking, needs testing but it's more similar to what we do for other libraries now
koda
parents:
9205
diff
changeset
|
157 |
endif() |
acb2492288e5
heavily rework lua discovery and linking, needs testing but it's more similar to what we do for other libraries now
koda
parents:
9205
diff
changeset
|
158 |
|
acb2492288e5
heavily rework lua discovery and linking, needs testing but it's more similar to what we do for other libraries now
koda
parents:
9205
diff
changeset
|
159 |
if (LUA_LIBRARY AND LUA_INCLUDE_DIR) |
acb2492288e5
heavily rework lua discovery and linking, needs testing but it's more similar to what we do for other libraries now
koda
parents:
9205
diff
changeset
|
160 |
set(LUA_FOUND TRUE) |
9233
a6ae0286787c
when you don't use bundled dirs, add a fake target anyway, so you can use the same cmake syntax even if the target uses a different name
koda
parents:
9229
diff
changeset
|
161 |
#use an IMPORTED tharget so that we can just use 'lua' to link |
a6ae0286787c
when you don't use bundled dirs, add a fake target anyway, so you can use the same cmake syntax even if the target uses a different name
koda
parents:
9229
diff
changeset
|
162 |
add_library(lua UNKNOWN IMPORTED) |
a6ae0286787c
when you don't use bundled dirs, add a fake target anyway, so you can use the same cmake syntax even if the target uses a different name
koda
parents:
9229
diff
changeset
|
163 |
set_target_properties(lua PROPERTIES IMPORTED_LOCATION ${LUA_LIBRARY}) |
9208
acb2492288e5
heavily rework lua discovery and linking, needs testing but it's more similar to what we do for other libraries now
koda
parents:
9205
diff
changeset
|
164 |
else() |
acb2492288e5
heavily rework lua discovery and linking, needs testing but it's more similar to what we do for other libraries now
koda
parents:
9205
diff
changeset
|
165 |
message(FATAL_ERROR "Missing Lua! Rerun cmake with -DLUA_SYSTEM=off to build the internal version") |
acb2492288e5
heavily rework lua discovery and linking, needs testing but it's more similar to what we do for other libraries now
koda
parents:
9205
diff
changeset
|
166 |
endif() |
7223 | 167 |
else() |
9214 | 168 |
if (NOT LUA_LIBRARY OR NOT LUA_INCLUDE_DIR) |
169 |
message(STATUS "LUA will be provided by the bundled sources") |
|
170 |
endif() |
|
9213 | 171 |
set(lua_output_name "hwlua") |
7220 | 172 |
add_subdirectory(misc/liblua) |
7031
d5ea24399a48
when Lua is not found, fallback to compiling the one that comes bundled in our sources
koda
parents:
7030
diff
changeset
|
173 |
endif() |
7223 | 174 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
175 |
|
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
|
176 |
#physfs discovery |
9096
b3041025c271
fix the cmake flag PHYSFS_SYSTEM being called SYSTEM_PHYSFS in the code
sheepluva
parents:
9091
diff
changeset
|
177 |
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
|
178 |
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
|
179 |
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
|
180 |
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
|
181 |
|
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
|
182 |
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
|
183 |
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
|
184 |
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
|
185 |
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
|
186 |
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
|
187 |
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
|
188 |
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
|
189 |
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
|
190 |
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
|
191 |
|
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
|
192 |
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
|
193 |
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
|
194 |
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
|
195 |
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
|
196 |
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
|
197 |
|
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
|
198 |
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
|
199 |
message(FATAL_ERROR "Missing PhysFS! Rerun cmake with -DPHYSFS_SYSTEM=off to build the internal version") |
9233
a6ae0286787c
when you don't use bundled dirs, add a fake target anyway, so you can use the same cmake syntax even if the target uses a different name
koda
parents:
9229
diff
changeset
|
200 |
else() |
a6ae0286787c
when you don't use bundled dirs, add a fake target anyway, so you can use the same cmake syntax even if the target uses a different name
koda
parents:
9229
diff
changeset
|
201 |
#use an IMPORTED tharget so that we can just use 'physfs' to link |
a6ae0286787c
when you don't use bundled dirs, add a fake target anyway, so you can use the same cmake syntax even if the target uses a different name
koda
parents:
9229
diff
changeset
|
202 |
add_library(physfs UNKNOWN IMPORTED) |
a6ae0286787c
when you don't use bundled dirs, add a fake target anyway, so you can use the same cmake syntax even if the target uses a different name
koda
parents:
9229
diff
changeset
|
203 |
set_target_properties(physfs PROPERTIES IMPORTED_LOCATION ${PHYSFS_LIBRARY}) |
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
|
204 |
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
|
205 |
else() |
9214 | 206 |
if (NOT PHYSFS_LIBRARY OR NOT PHYSFS_INCLUDE_DIR) |
207 |
message(STATUS "PhysFS will be provided by the bundled sources") |
|
208 |
endif() |
|
9204 | 209 |
set(physfs_output_name "hwphysfs") |
8528 | 210 |
add_subdirectory(misc/libphysfs) |
211 |
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
|
212 |
|
8688 | 213 |
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
|
214 |
|
8671 | 215 |
#physfs helper library |
8528 | 216 |
add_subdirectory(misc/libphyslayer) |
8283 | 217 |
|
9244 | 218 |
if(NOT BUILD_ENGINE_LIBRARY AND APPLE) |
219 |
add_subdirectory(hedgewars/sdlmain) |
|
220 |
endif() |
|
221 |
||
9238 | 222 |
#TODO: nowadays this could be merged inside hedgewars/CMakeLists.txt |
7993 | 223 |
if(NOPASCAL) |
7973 | 224 |
#pascal to c converter |
225 |
add_subdirectory(tools/pas2c) |
|
7999 | 226 |
add_subdirectory(project_files/hwc) |
7973 | 227 |
else() |
7993 | 228 |
#main pascal engine |
7973 | 229 |
add_subdirectory(hedgewars) |
8671 | 230 |
endif() |
231 |
||
7993 | 232 |
if(WEBGL) |
233 |
#WEBGL deps |
|
8096 | 234 |
else(WEBGL) |
7973 | 235 |
#Android related build scripts |
9244 | 236 |
#TODO: when ANDROID, BUILD_ENGINE_LIBRARY should be set |
7973 | 237 |
if(ANDROID) |
238 |
add_subdirectory(project_files/Android-build) |
|
8833 | 239 |
else(ANDROID) |
7973 | 240 |
add_subdirectory(bin) |
241 |
add_subdirectory(QTfrontend) |
|
242 |
add_subdirectory(share) |
|
243 |
add_subdirectory(tools) |
|
8833 | 244 |
endif(ANDROID) |
8096 | 245 |
endif(WEBGL) |
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
246 |
|
9091
bafadc6b4516
change cpack configuration file name so that it's not excluded by 'make package_source'
koda
parents:
9086
diff
changeset
|
247 |
include(${CMAKE_MODULE_PATH}/cpackvars.cmake) |
184 | 248 |