author | koda |
Fri, 17 Jan 2014 16:31:36 +0100 | |
changeset 10004 | eb0b520564bb |
parent 9994 | 8455993a7a1b |
child 10007 | c28e4db7cca9 |
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) |
9994
8455993a7a1b
* allow telling cmake where to find required fonts in system when user supplies the paths, as suggested by unC0Rr, e.g. -DFONTS_DIRS='/usr/share/fonts/truetype/wqy;/usr/share/fonts/truetype/dejavu'
sheepluva
parents:
9991
diff
changeset
|
21 |
|
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
|
22 |
if(WIN32 OR APPLE) |
10004 | 23 |
option(PHYSFS_SYSTEM "Use system physfs (off)" OFF) |
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 |
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
|
25 |
else() |
10004 | 26 |
option(PHYSFS_SYSTEM "Use system physfs (on)" ON) |
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
|
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 |
||
9262 | 33 |
option(MINIMAL_FLAGS "Respect system flags as much as possible (off)" OFF) |
34 |
option(NOAUTOUPDATE "Disable OS X Sparkle update checking (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
|
35 |
|
8333
416cb5e5a405
move DATA_INSTALL_DIR to the configurable options section
koda
parents:
8331
diff
changeset
|
36 |
set(GHFLAGS "" CACHE STRING "Additional Haskell flags") |
416cb5e5a405
move DATA_INSTALL_DIR to the configurable options section
koda
parents:
8331
diff
changeset
|
37 |
if(UNIX AND NOT APPLE) |
416cb5e5a405
move DATA_INSTALL_DIR to the configurable options section
koda
parents:
8331
diff
changeset
|
38 |
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
|
39 |
endif() |
8104
09c38cdf380d
show console on win when debugging to see frontend messages
koda
parents:
8093
diff
changeset
|
40 |
|
10004 | 41 |
#system paths for finding required fonts (see share/hedgewars/Data/fonts) |
42 |
#subdirectories will NOT be searched. |
|
43 |
#all fonts that can't be found will be bundled with hedgewars |
|
9994
8455993a7a1b
* allow telling cmake where to find required fonts in system when user supplies the paths, as suggested by unC0Rr, e.g. -DFONTS_DIRS='/usr/share/fonts/truetype/wqy;/usr/share/fonts/truetype/dejavu'
sheepluva
parents:
9991
diff
changeset
|
44 |
set(FONTS_DIRS "" CACHE STRING "Additional paths to folders where required fonts can be found ( ; is separator)") |
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
|
45 |
|
5405 | 46 |
#versioning |
5407 | 47 |
set(CPACK_PACKAGE_VERSION_MAJOR 0) |
48 |
set(CPACK_PACKAGE_VERSION_MINOR 9) |
|
9955 | 49 |
set(CPACK_PACKAGE_VERSION_PATCH 21) |
9896 | 50 |
set(HEDGEWARS_PROTO_VER 48) |
5407 | 51 |
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
|
52 |
include(${CMAKE_MODULE_PATH}/revinfo.cmake) |
5405 | 53 |
|
8650 | 54 |
message(STATUS "Building ${HEDGEWARS_VERSION}-r${HEDGEWARS_REVISION} (${HEDGEWARS_HASH})") |
907 | 55 |
|
9220 | 56 |
#general utilities |
57 |
include(${CMAKE_MODULE_PATH}/utils.cmake) |
|
9860
d419ff107e15
include paths before platform, move config code around
koda
parents:
9843
diff
changeset
|
58 |
#paths initialization |
d419ff107e15
include paths before platform, move config code around
koda
parents:
9843
diff
changeset
|
59 |
include(${CMAKE_MODULE_PATH}/paths.cmake) |
9150
79c58ff0d4b1
move platform specific and revision info code into separate cmake modules
koda
parents:
9141
diff
changeset
|
60 |
#platform specific init code |
79c58ff0d4b1
move platform specific and revision info code into separate cmake modules
koda
parents:
9141
diff
changeset
|
61 |
include(${CMAKE_MODULE_PATH}/platform.cmake) |
2015 | 62 |
|
2406 | 63 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
64 |
#when build type is not specified, assume Debug/Release according to build version information |
9963 | 65 |
if(CMAKE_BUILD_TYPE) |
66 |
string(TOUPPER ${CMAKE_BUILD_TYPE} CMAKE_BUILD_TYPE) |
|
67 |
if(NOT((CMAKE_BUILD_TYPE MATCHES "RELEASE") OR |
|
68 |
(CMAKE_BUILD_TYPE MATCHES "DEBUG"))) |
|
69 |
set(CMAKE_BUILD_TYPE ${default_build_type} CACHE STRING "Build type (Debug/Release)" FORCE) |
|
70 |
message(STATUS "Unknown build type, using default (${default_build_type})") |
|
71 |
endif() |
|
72 |
else(CMAKE_BUILD_TYPE) |
|
73 |
set(CMAKE_BUILD_TYPE ${default_build_type} CACHE STRING "Build type (Debug/Release)" FORCE) |
|
74 |
endif(CMAKE_BUILD_TYPE) |
|
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
75 |
|
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
76 |
|
9152 | 77 |
#perform safe check that enable/disable compilation features |
78 |
include(${CMAKE_MODULE_PATH}/compilerchecks.cmake) |
|
79 |
||
9265
a0e7e7a1c3f8
rework compiler flags section a little, drop already enabled flags, add -Wextra
koda
parents:
9262
diff
changeset
|
80 |
#set default compiler flags |
9673 | 81 |
add_flag_append(CMAKE_C_FLAGS "-Wall -pipe") |
9886 | 82 |
add_flag_append(CMAKE_C_FLAGS_RELEASE "-O2") |
9265
a0e7e7a1c3f8
rework compiler flags section a little, drop already enabled flags, add -Wextra
koda
parents:
9262
diff
changeset
|
83 |
add_flag_append(CMAKE_C_FLAGS_DEBUG "-Wextra -O0") |
9673 | 84 |
add_flag_append(CMAKE_CXX_FLAGS "-Wall -pipe") |
9886 | 85 |
add_flag_append(CMAKE_CXX_FLAGS_RELEASE "-O2") |
9265
a0e7e7a1c3f8
rework compiler flags section a little, drop already enabled flags, add -Wextra
koda
parents:
9262
diff
changeset
|
86 |
add_flag_append(CMAKE_CXX_FLAGS_DEBUG "-Wextra -O0") |
a0e7e7a1c3f8
rework compiler flags section a little, drop already enabled flags, add -Wextra
koda
parents:
9262
diff
changeset
|
87 |
|
a0e7e7a1c3f8
rework compiler flags section a little, drop already enabled flags, add -Wextra
koda
parents:
9262
diff
changeset
|
88 |
#CMake adds a lot of additional configuration flags, so let's clear them up |
9963 | 89 |
if(MINIMAL_FLAGS) |
9265
a0e7e7a1c3f8
rework compiler flags section a little, drop already enabled flags, add -Wextra
koda
parents:
9262
diff
changeset
|
90 |
unset(CMAKE_C_FLAGS_RELEASE) |
a0e7e7a1c3f8
rework compiler flags section a little, drop already enabled flags, add -Wextra
koda
parents:
9262
diff
changeset
|
91 |
unset(CMAKE_C_FLAGS_DEBUG) |
a0e7e7a1c3f8
rework compiler flags section a little, drop already enabled flags, add -Wextra
koda
parents:
9262
diff
changeset
|
92 |
unset(CMAKE_CXX_FLAGS_RELEASE) |
a0e7e7a1c3f8
rework compiler flags section a little, drop already enabled flags, add -Wextra
koda
parents:
9262
diff
changeset
|
93 |
unset(CMAKE_CXX_FLAGS_DEBUG) |
7944 | 94 |
endif() |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
95 |
|
9262 | 96 |
|
7397
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
97 |
#parse additional parameters |
8796 | 98 |
if(GHFLAGS) |
9265
a0e7e7a1c3f8
rework compiler flags section a little, drop already enabled flags, add -Wextra
koda
parents:
9262
diff
changeset
|
99 |
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
|
100 |
separate_arguments(ghflags_parsed UNIX_COMMAND ${GHFLAGS}) |
9104 | 101 |
else() |
9963 | 102 |
message("*** 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
|
103 |
endif() |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
104 |
endif() |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
105 |
|
9265
a0e7e7a1c3f8
rework compiler flags section a little, drop already enabled flags, add -Wextra
koda
parents:
9262
diff
changeset
|
106 |
list(APPEND haskell_flags ${ghflags_parsed} "-O2") |
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
107 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
108 |
#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
|
109 |
message(STATUS "Using ${CMAKE_BUILD_TYPE} configuration") |
7709
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
110 |
if(CMAKE_BUILD_TYPE MATCHES "DEBUG") |
8707 | 111 |
list(APPEND haskell_flags "-Wall" # all warnings |
112 |
"-debug" # debug mode |
|
113 |
"-dcore-lint" # internal sanity check |
|
8644 | 114 |
) |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
115 |
else() |
8707 | 116 |
list(APPEND haskell_flags "-w" # no warnings |
8644 | 117 |
) |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
118 |
endif() |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
119 |
|
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
120 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
121 |
#lua discovery |
9963 | 122 |
if(LUA_SYSTEM) |
123 |
if(NOT LUA_LIBRARY OR NOT LUA_INCLUDE_DIR) |
|
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
|
124 |
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
|
125 |
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
|
126 |
|
9963 | 127 |
if(LUA_LIBRARY AND LUA_INCLUDE_DIR) |
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
|
128 |
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
|
129 |
#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
|
130 |
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
|
131 |
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
|
132 |
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
|
133 |
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
|
134 |
endif() |
7223 | 135 |
else() |
9963 | 136 |
if(NOT LUA_LIBRARY OR NOT LUA_INCLUDE_DIR) |
9214 | 137 |
message(STATUS "LUA will be provided by the bundled sources") |
138 |
endif() |
|
9213 | 139 |
set(lua_output_name "hwlua") |
7220 | 140 |
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
|
141 |
endif() |
7223 | 142 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
143 |
|
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
|
144 |
#physfs discovery |
9963 | 145 |
if(PHYSFS_SYSTEM) |
146 |
if(NOT PHYSFS_LIBRARY OR NOT PHYSFS_INCLUDE_DIR) |
|
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
|
147 |
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
|
148 |
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
|
149 |
|
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
|
150 |
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
|
151 |
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
|
152 |
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
|
153 |
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
|
154 |
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
|
155 |
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
|
156 |
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
|
157 |
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
|
158 |
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
|
159 |
|
10004 | 160 |
if(${physfs_detected_ver} VERSION_LESS 2.0.0) |
161 |
message(FATAL_ERROR "PhysFS version is too old (detected ${physfs_detected_ver}, required 2.0.0)" |
|
162 |
"Perform an update or rerun cmake with -DPHYSFS_SYSTEM=off to build the internal version") |
|
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
|
163 |
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
|
164 |
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
|
165 |
|
9963 | 166 |
if(NOT PHYSFS_LIBRARY OR NOT PHYSFS_INCLUDE_DIR) |
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
|
167 |
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
|
168 |
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
|
169 |
#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
|
170 |
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
|
171 |
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
|
172 |
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
|
173 |
else() |
9963 | 174 |
if(NOT PHYSFS_LIBRARY OR NOT PHYSFS_INCLUDE_DIR) |
9214 | 175 |
message(STATUS "PhysFS will be provided by the bundled sources") |
176 |
endif() |
|
9204 | 177 |
set(physfs_output_name "hwphysfs") |
8528 | 178 |
add_subdirectory(misc/libphysfs) |
179 |
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
|
180 |
|
9959 | 181 |
find_package_or_disable_msg(LIBAV NOVIDEOREC "Video recording will not be built") |
8666
1652c1d9adc8
rework ffmpeg/libav/videorec linking and their cmake discovery
koda
parents:
8665
diff
changeset
|
182 |
|
8671 | 183 |
#physfs helper library |
8528 | 184 |
add_subdirectory(misc/libphyslayer) |
8283 | 185 |
|
8671 | 186 |
#server |
187 |
if(NOT NOSERVER) |
|
188 |
add_subdirectory(gameServer) |
|
189 |
endif() |
|
190 |
||
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
191 |
#main engine |
184 | 192 |
add_subdirectory(hedgewars) |
5053 | 193 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
194 |
#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
|
195 |
if(ANDROID) |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
196 |
#run cmake -DANDROID=1 to enable this |
7220 | 197 |
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
|
198 |
endif() |
5381
8f95038f3f75
Removed protocol check, using CMake now to setup the building scripts using Templates/* removed old scripts
Xeli
parents:
5223
diff
changeset
|
199 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
200 |
#TODO: when ANDROID, BUILD_ENGINE_LIBRARY should be set |
8082
675372256a01
lotsa hackery to get frontend somehow link libengine...
koda
parents:
8078
diff
changeset
|
201 |
if(NOT ANDROID) |
7220 | 202 |
add_subdirectory(bin) |
203 |
add_subdirectory(QTfrontend) |
|
204 |
add_subdirectory(share) |
|
205 |
add_subdirectory(tools) |
|
3515 | 206 |
endif() |
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
207 |
|
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
208 |
|
9091
bafadc6b4516
change cpack configuration file name so that it's not excluded by 'make package_source'
koda
parents:
9086
diff
changeset
|
209 |
include(${CMAKE_MODULE_PATH}/cpackvars.cmake) |
184 | 210 |
|
9988
317d46a2afd2
simple mechanism to run lua-based test cases. experimental - I will back it out if it turns out to be nonsense
sheepluva
parents:
9965
diff
changeset
|
211 |
enable_testing() |
317d46a2afd2
simple mechanism to run lua-based test cases. experimental - I will back it out if it turns out to be nonsense
sheepluva
parents:
9965
diff
changeset
|
212 |
|
317d46a2afd2
simple mechanism to run lua-based test cases. experimental - I will back it out if it turns out to be nonsense
sheepluva
parents:
9965
diff
changeset
|
213 |
set(LUATESTS "${CMAKE_SOURCE_DIR}/tests/lua") |
317d46a2afd2
simple mechanism to run lua-based test cases. experimental - I will back it out if it turns out to be nonsense
sheepluva
parents:
9965
diff
changeset
|
214 |
set(LUAAPITESTS "${LUATESTS}/luaAPI") |
317d46a2afd2
simple mechanism to run lua-based test cases. experimental - I will back it out if it turns out to be nonsense
sheepluva
parents:
9965
diff
changeset
|
215 |
set(TESTSDATADIR "${CMAKE_SOURCE_DIR}/share/hedgewars/Data") |
317d46a2afd2
simple mechanism to run lua-based test cases. experimental - I will back it out if it turns out to be nonsense
sheepluva
parents:
9965
diff
changeset
|
216 |
|
317d46a2afd2
simple mechanism to run lua-based test cases. experimental - I will back it out if it turns out to be nonsense
sheepluva
parents:
9965
diff
changeset
|
217 |
add_test("LuaAPI:GetZoom/SetZoom" "bin/hwengine" "--prefix" "${TESTSDATADIR}" "--lua-test" "${LUATESTS}/luaAPI/zoom_get_set.lua") |