author | koda |
Tue, 04 Jun 2013 23:48:24 +0200 | |
branch | webgl |
changeset 9130 | 4f4b71da3559 |
parent 9127 | e350500c4edb |
child 9160 | fc46e75f6b72 |
permissions | -rw-r--r-- |
184 | 1 |
project(hedgewars) |
2 |
||
5407 | 3 |
#initialise cmake environment |
8104
09c38cdf380d
show console on win when debugging to see frontend messages
koda
parents:
8093
diff
changeset
|
4 |
cmake_minimum_required(VERSION 2.6.0) |
8611
90f445317e8a
support WARNING message status on cmake 2.6 (bug 524)
koda
parents:
8597
diff
changeset
|
5 |
if(CMAKE_VERSION VERSION_LESS "2.8") |
90f445317e8a
support WARNING message status on cmake 2.6 (bug 524)
koda
parents:
8597
diff
changeset
|
6 |
set(WARNING "WARNING: ") |
90f445317e8a
support WARNING message status on cmake 2.6 (bug 524)
koda
parents:
8597
diff
changeset
|
7 |
set(allow_parse_args FALSE) |
90f445317e8a
support WARNING message status on cmake 2.6 (bug 524)
koda
parents:
8597
diff
changeset
|
8 |
else() |
90f445317e8a
support WARNING message status on cmake 2.6 (bug 524)
koda
parents:
8597
diff
changeset
|
9 |
set(WARNING WARNING) |
90f445317e8a
support WARNING message status on cmake 2.6 (bug 524)
koda
parents:
8597
diff
changeset
|
10 |
set(allow_parse_args TRUE) |
90f445317e8a
support WARNING message status on cmake 2.6 (bug 524)
koda
parents:
8597
diff
changeset
|
11 |
endif() |
8146 | 12 |
foreach(hwpolicy CMP0003 CMP0012 CMP0017) |
13 |
if(POLICY ${hwpolicy}) |
|
14 |
cmake_policy(SET ${hwpolicy} NEW) |
|
15 |
endif() |
|
16 |
endforeach() |
|
8611
90f445317e8a
support WARNING message status on cmake 2.6 (bug 524)
koda
parents:
8597
diff
changeset
|
17 |
|
8674
fff355ba2902
our cmake modules have become good enough, prefer them over system ones
koda
parents:
8673
diff
changeset
|
18 |
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake_modules") |
8673 | 19 |
|
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
|
20 |
|
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
21 |
#possible cmake configuration |
8687 | 22 |
option(NOSERVER "Disable gameServer build (off)]" OFF) |
23 |
option(NOPNG "Disable screenshoot compression (off)" OFF) |
|
24 |
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
|
25 |
|
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
|
26 |
#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
|
27 |
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
|
28 |
|
8833 | 29 |
option(LIBENGINE "Enable hwengine library (off)" OFF) |
8687 | 30 |
option(ANDROID "Enable Android build (off)" OFF) |
31 |
||
32 |
if(UNIX AND NOT APPLE) |
|
33 |
option(MINIMAL_FLAGS "Respect system flags as much as possible (off)" OFF) |
|
34 |
else() |
|
8659 | 35 |
option(NOAUTOUPDATE "Disable OS X Sparkle update checking" OFF) |
36 |
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
|
37 |
|
8096 | 38 |
option(WEBGL "Enable WebGL build (implies NOPASCAL) [default: off]" OFF) |
39 |
option(NOPASCAL "Compile hwengine as native C [default: off]" ${WEBGL}) |
|
8833 | 40 |
option(GL2 "Enable OpenGL 2 rendering [default: off]" OFF) |
8096 | 41 |
|
8333
416cb5e5a405
move DATA_INSTALL_DIR to the configurable options section
koda
parents:
8331
diff
changeset
|
42 |
set(FPFLAGS "" CACHE STRING "Additional Freepascal flags") |
416cb5e5a405
move DATA_INSTALL_DIR to the configurable options section
koda
parents:
8331
diff
changeset
|
43 |
set(GHFLAGS "" CACHE STRING "Additional Haskell flags") |
416cb5e5a405
move DATA_INSTALL_DIR to the configurable options section
koda
parents:
8331
diff
changeset
|
44 |
if(UNIX AND NOT APPLE) |
416cb5e5a405
move DATA_INSTALL_DIR to the configurable options section
koda
parents:
8331
diff
changeset
|
45 |
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
|
46 |
endif() |
8104
09c38cdf380d
show console on win when debugging to see frontend messages
koda
parents:
8093
diff
changeset
|
47 |
|
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
|
48 |
|
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
49 |
#detect Mercurial revision and init rev/hash information |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
50 |
find_program(HGCOMMAND hg) |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
51 |
if(HGCOMMAND AND (EXISTS ${CMAKE_SOURCE_DIR}/.hg)) |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
52 |
execute_process(COMMAND ${HGCOMMAND} identify -in |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
53 |
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
54 |
OUTPUT_VARIABLE internal_version |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
55 |
ERROR_QUIET |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
56 |
) |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
57 |
#check local repo status |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
58 |
string(REGEX REPLACE "[^+]" "" HGCHANGED ${internal_version}) |
8650 | 59 |
string(REGEX REPLACE "[0-9a-zA-Z]+(.*) ([0-9]+)(.*)" "\\2" HEDGEWARS_REVISION ${internal_version}) |
60 |
string(REGEX REPLACE "([0-9a-zA-Z]+)(.*) [0-9]+(.*)" "\\1" HEDGEWARS_HASH ${internal_version}) |
|
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
|
61 |
|
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
62 |
if(HGCHANGED) |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
63 |
message(${WARNING} "You have uncommitted changes in your repository!") |
8146 | 64 |
endif() |
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
65 |
#let's assume that if you have hg you might be interested in debugging |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
66 |
set(default_build_type "DEBUG") |
8641 | 67 |
#write down hash and rev for easy picking should hg be missing |
8650 | 68 |
file(WRITE "${CMAKE_SOURCE_DIR}/share/version_info.txt" "Hedgewars versioning information, do not modify\nrev ${HEDGEWARS_REVISION}\nhash ${HEDGEWARS_HASH}\n") |
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
69 |
else() |
7709
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
70 |
set(default_build_type "RELEASE") |
8642
d7062e684466
use rev info from the just created file when configuring without mercurial
koda
parents:
8641
diff
changeset
|
71 |
# when compiling outside rev control, fetch revision and hash information from version_info.txt |
d7062e684466
use rev info from the just created file when configuring without mercurial
koda
parents:
8641
diff
changeset
|
72 |
find_file(version_info version_info.txt PATH ${CMAKE_SOURCE_DIR}/share) |
d7062e684466
use rev info from the just created file when configuring without mercurial
koda
parents:
8641
diff
changeset
|
73 |
if(version_info) |
d7062e684466
use rev info from the just created file when configuring without mercurial
koda
parents:
8641
diff
changeset
|
74 |
file(STRINGS ${version_info} internal_version REGEX "rev") |
8650 | 75 |
string(REGEX REPLACE "rev ([0-9]*)" "\\1" HEDGEWARS_REVISION ${internal_version}) |
8642
d7062e684466
use rev info from the just created file when configuring without mercurial
koda
parents:
8641
diff
changeset
|
76 |
file(STRINGS ${version_info} internal_version REGEX "hash") |
8650 | 77 |
string(REGEX REPLACE "hash ([a-zA-Z0-9]*)" "\\1" HEDGEWARS_HASH ${internal_version}) |
8642
d7062e684466
use rev info from the just created file when configuring without mercurial
koda
parents:
8641
diff
changeset
|
78 |
else() |
d7062e684466
use rev info from the just created file when configuring without mercurial
koda
parents:
8641
diff
changeset
|
79 |
message(${WARNING} "${CMAKE_SOURCE_DIR}/share/version_info.txt not found, revision information " |
d7062e684466
use rev info from the just created file when configuring without mercurial
koda
parents:
8641
diff
changeset
|
80 |
"will be incorrect!!! Contact your source provider to fix this!") |
8650 | 81 |
set(HEDGEWARS_REVISION "0000") |
82 |
set(HEDGEWARS_HASH "unknown") |
|
8642
d7062e684466
use rev info from the just created file when configuring without mercurial
koda
parents:
8641
diff
changeset
|
83 |
endif() |
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
84 |
endif() |
2672 | 85 |
|
1107 | 86 |
|
5405 | 87 |
#versioning |
5407 | 88 |
set(CPACK_PACKAGE_VERSION_MAJOR 0) |
89 |
set(CPACK_PACKAGE_VERSION_MINOR 9) |
|
8613
82c649dfc7c3
split cVersionString into its three separate components (version, revision, hash) and apply the new values sensibly on the frontend (esp. title, info and feedback)
koda
parents:
8611
diff
changeset
|
90 |
set(CPACK_PACKAGE_VERSION_PATCH 19) |
9086 | 91 |
set(HEDGEWARS_PROTO_VER 45) |
5407 | 92 |
set(HEDGEWARS_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}") |
8113
0ad9c42dca7c
Refactor Clang module.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents:
8111
diff
changeset
|
93 |
set(required_clang_version 3.0) |
5405 | 94 |
|
8650 | 95 |
message(STATUS "Building ${HEDGEWARS_VERSION}-r${HEDGEWARS_REVISION} (${HEDGEWARS_HASH})") |
907 | 96 |
|
8340
46a9fde631f4
install shaders only when needed, find clang only when needed, fix building on windows, better cmake boolean vars
koda
parents:
8334
diff
changeset
|
97 |
if (${NOPASCAL}) |
46a9fde631f4
install shaders only when needed, find clang only when needed, fix building on windows, better cmake boolean vars
koda
parents:
8334
diff
changeset
|
98 |
find_package(Clang) |
46a9fde631f4
install shaders only when needed, find clang only when needed, fix building on windows, better cmake boolean vars
koda
parents:
8334
diff
changeset
|
99 |
# Check LLVM/Clang version |
8334
abb48dd39e26
Added shaders and -GL2 option
Michael Hartman <omh1280@gmail.com>
parents:
8330
diff
changeset
|
100 |
if (CLANG_VERSION VERSION_LESS required_clang_version) |
8450
404ddce27b23
add support for clang 3.3 (although there has to be a better way for this) and output right version number
koda
parents:
8444
diff
changeset
|
101 |
message(FATAL_ERROR "LLVM/Clang compiler required version is ${required_clang_version} but version ${CLANG_VERSION} was found!") |
8334
abb48dd39e26
Added shaders and -GL2 option
Michael Hartman <omh1280@gmail.com>
parents:
8330
diff
changeset
|
102 |
else() |
abb48dd39e26
Added shaders and -GL2 option
Michael Hartman <omh1280@gmail.com>
parents:
8330
diff
changeset
|
103 |
message(STATUS "Found CLANG: ${CLANG_EXECUTABLE} (version ${CLANG_VERSION})") |
abb48dd39e26
Added shaders and -GL2 option
Michael Hartman <omh1280@gmail.com>
parents:
8330
diff
changeset
|
104 |
endif() |
8340
46a9fde631f4
install shaders only when needed, find clang only when needed, fix building on windows, better cmake boolean vars
koda
parents:
8334
diff
changeset
|
105 |
endif(${NOPASCAL}) |
5405 | 106 |
|
907 | 107 |
|
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
108 |
|
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
109 |
#where to build libs and bins |
8316
89232b2fa1d6
cmake rework, cleanup a lot of redundant sections, separate library and binary install location, unify osx and win handling of the data directory (tested on win, lin and mac)
koda
parents:
8313
diff
changeset
|
110 |
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin) |
89232b2fa1d6
cmake rework, cleanup a lot of redundant sections, separate library and binary install location, unify osx and win handling of the data directory (tested on win, lin and mac)
koda
parents:
8313
diff
changeset
|
111 |
set(LIBRARY_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin) |
89232b2fa1d6
cmake rework, cleanup a lot of redundant sections, separate library and binary install location, unify osx and win handling of the data directory (tested on win, lin and mac)
koda
parents:
8313
diff
changeset
|
112 |
|
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
113 |
#resource paths |
8316
89232b2fa1d6
cmake rework, cleanup a lot of redundant sections, separate library and binary install location, unify osx and win handling of the data directory (tested on win, lin and mac)
koda
parents:
8313
diff
changeset
|
114 |
if(UNIX AND NOT APPLE) |
89232b2fa1d6
cmake rework, cleanup a lot of redundant sections, separate library and binary install location, unify osx and win handling of the data directory (tested on win, lin and mac)
koda
parents:
8313
diff
changeset
|
115 |
set(target_binary_install_dir "bin") |
89232b2fa1d6
cmake rework, cleanup a lot of redundant sections, separate library and binary install location, unify osx and win handling of the data directory (tested on win, lin and mac)
koda
parents:
8313
diff
changeset
|
116 |
set(target_library_install_dir "lib") |
8646
e31044b7fbba
on linux assume datapath is always relative to cmake_install_prefix, unless you provide an absolute path; on win32/osx hardcode engine path to default installation prefixes (it gets overridden at runtime so it works even if you move the data folder)
koda
parents:
8644
diff
changeset
|
117 |
|
e31044b7fbba
on linux assume datapath is always relative to cmake_install_prefix, unless you provide an absolute path; on win32/osx hardcode engine path to default installation prefixes (it gets overridden at runtime so it works even if you move the data folder)
koda
parents:
8644
diff
changeset
|
118 |
string(SUBSTRING "${DATA_INSTALL_DIR}" 0 1 sharepath_start) |
e31044b7fbba
on linux assume datapath is always relative to cmake_install_prefix, unless you provide an absolute path; on win32/osx hardcode engine path to default installation prefixes (it gets overridden at runtime so it works even if you move the data folder)
koda
parents:
8644
diff
changeset
|
119 |
if (NOT (${sharepath_start} MATCHES "/")) |
e31044b7fbba
on linux assume datapath is always relative to cmake_install_prefix, unless you provide an absolute path; on win32/osx hardcode engine path to default installation prefixes (it gets overridden at runtime so it works even if you move the data folder)
koda
parents:
8644
diff
changeset
|
120 |
set(HEDGEWARS_DATADIR "${CMAKE_INSTALL_PREFIX}/${DATA_INSTALL_DIR}/") |
e31044b7fbba
on linux assume datapath is always relative to cmake_install_prefix, unless you provide an absolute path; on win32/osx hardcode engine path to default installation prefixes (it gets overridden at runtime so it works even if you move the data folder)
koda
parents:
8644
diff
changeset
|
121 |
else() |
e31044b7fbba
on linux assume datapath is always relative to cmake_install_prefix, unless you provide an absolute path; on win32/osx hardcode engine path to default installation prefixes (it gets overridden at runtime so it works even if you move the data folder)
koda
parents:
8644
diff
changeset
|
122 |
set(HEDGEWARS_DATADIR "${DATA_INSTALL_DIR}/") |
e31044b7fbba
on linux assume datapath is always relative to cmake_install_prefix, unless you provide an absolute path; on win32/osx hardcode engine path to default installation prefixes (it gets overridden at runtime so it works even if you move the data folder)
koda
parents:
8644
diff
changeset
|
123 |
endif() |
e31044b7fbba
on linux assume datapath is always relative to cmake_install_prefix, unless you provide an absolute path; on win32/osx hardcode engine path to default installation prefixes (it gets overridden at runtime so it works even if you move the data folder)
koda
parents:
8644
diff
changeset
|
124 |
set(HEDGEWARS_FULL_DATADIR "${HEDGEWARS_DATADIR}") |
7718
97ba379164ec
use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents:
7709
diff
changeset
|
125 |
else() |
8316
89232b2fa1d6
cmake rework, cleanup a lot of redundant sections, separate library and binary install location, unify osx and win handling of the data directory (tested on win, lin and mac)
koda
parents:
8313
diff
changeset
|
126 |
set(target_binary_install_dir "./") |
89232b2fa1d6
cmake rework, cleanup a lot of redundant sections, separate library and binary install location, unify osx and win handling of the data directory (tested on win, lin and mac)
koda
parents:
8313
diff
changeset
|
127 |
|
8317
ec9f94ab2737
remove the CROSSAPPLE option until a better solution is found
koda
parents:
8316
diff
changeset
|
128 |
if(APPLE) |
8646
e31044b7fbba
on linux assume datapath is always relative to cmake_install_prefix, unless you provide an absolute path; on win32/osx hardcode engine path to default installation prefixes (it gets overridden at runtime so it works even if you move the data folder)
koda
parents:
8644
diff
changeset
|
129 |
set(target_library_install_dir "../Frameworks/") |
8316
89232b2fa1d6
cmake rework, cleanup a lot of redundant sections, separate library and binary install location, unify osx and win handling of the data directory (tested on win, lin and mac)
koda
parents:
8313
diff
changeset
|
130 |
set(CMAKE_INSTALL_PREFIX "Hedgewars.app/Contents/MacOS/") |
8646
e31044b7fbba
on linux assume datapath is always relative to cmake_install_prefix, unless you provide an absolute path; on win32/osx hardcode engine path to default installation prefixes (it gets overridden at runtime so it works even if you move the data folder)
koda
parents:
8644
diff
changeset
|
131 |
set(HEDGEWARS_DATADIR "../Resources/") |
e31044b7fbba
on linux assume datapath is always relative to cmake_install_prefix, unless you provide an absolute path; on win32/osx hardcode engine path to default installation prefixes (it gets overridden at runtime so it works even if you move the data folder)
koda
parents:
8644
diff
changeset
|
132 |
set(HEDGEWARS_FULL_DATADIR "/Applications/${CMAKE_INSTALL_PREFIX}/${HEDGEWARS_DATADIR}") |
e31044b7fbba
on linux assume datapath is always relative to cmake_install_prefix, unless you provide an absolute path; on win32/osx hardcode engine path to default installation prefixes (it gets overridden at runtime so it works even if you move the data folder)
koda
parents:
8644
diff
changeset
|
133 |
elseif(WIN32) |
e31044b7fbba
on linux assume datapath is always relative to cmake_install_prefix, unless you provide an absolute path; on win32/osx hardcode engine path to default installation prefixes (it gets overridden at runtime so it works even if you move the data folder)
koda
parents:
8644
diff
changeset
|
134 |
set(target_library_install_dir "./") |
e31044b7fbba
on linux assume datapath is always relative to cmake_install_prefix, unless you provide an absolute path; on win32/osx hardcode engine path to default installation prefixes (it gets overridden at runtime so it works even if you move the data folder)
koda
parents:
8644
diff
changeset
|
135 |
set(HEDGEWARS_DATADIR "./") |
e31044b7fbba
on linux assume datapath is always relative to cmake_install_prefix, unless you provide an absolute path; on win32/osx hardcode engine path to default installation prefixes (it gets overridden at runtime so it works even if you move the data folder)
koda
parents:
8644
diff
changeset
|
136 |
set(HEDGEWARS_FULL_DATADIR "${CMAKE_INSTALL_PREFIX}/") |
e31044b7fbba
on linux assume datapath is always relative to cmake_install_prefix, unless you provide an absolute path; on win32/osx hardcode engine path to default installation prefixes (it gets overridden at runtime so it works even if you move the data folder)
koda
parents:
8644
diff
changeset
|
137 |
link_directories("${EXECUTABLE_OUTPUT_PATH}" "${CMAKE_SOURCE_DIR}/misc/winutils/bin") |
8316
89232b2fa1d6
cmake rework, cleanup a lot of redundant sections, separate library and binary install location, unify osx and win handling of the data directory (tested on win, lin and mac)
koda
parents:
8313
diff
changeset
|
138 |
endif() |
7256 | 139 |
endif() |
140 |
||
8316
89232b2fa1d6
cmake rework, cleanup a lot of redundant sections, separate library and binary install location, unify osx and win handling of the data directory (tested on win, lin and mac)
koda
parents:
8313
diff
changeset
|
141 |
|
7256 | 142 |
if(APPLE) |
143 |
set(CMAKE_FIND_FRAMEWORK "FIRST") |
|
3697 | 144 |
|
7220 | 145 |
#what system are we building for |
146 |
set(minimum_macosx_version $ENV{MACOSX_DEPLOYMENT_TARGET}) |
|
3697 | 147 |
|
7220 | 148 |
#detect on which system we are: if sw_vers cannot be found for any reason (re)use minimum_macosx_version |
149 |
find_program(sw_vers sw_vers) |
|
150 |
if(sw_vers) |
|
8093
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
151 |
execute_process(COMMAND ${sw_vers} "-productVersion" |
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
152 |
OUTPUT_VARIABLE current_macosx_version |
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
153 |
OUTPUT_STRIP_TRAILING_WHITESPACE) |
7220 | 154 |
string(REGEX REPLACE "([0-9]+.[0-9]+).[0-9]+" "\\1" current_macosx_version ${current_macosx_version}) |
8093
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
155 |
else() |
7220 | 156 |
if(NOT minimum_macosx_version) |
157 |
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
|
158 |
else() |
8611
90f445317e8a
support WARNING message status on cmake 2.6 (bug 524)
koda
parents:
8597
diff
changeset
|
159 |
message(${WARNING} "sw_vers not found! Fallback to MACOSX_DEPLOYMENT_TARGET variable") |
7220 | 160 |
set(current_macosx_version ${minimum_macosx_version}) |
161 |
endif() |
|
162 |
endif() |
|
2641 | 163 |
|
7220 | 164 |
#if nothing is set, we deploy only for the current system |
165 |
if(NOT minimum_macosx_version) |
|
166 |
set(minimum_macosx_version ${current_macosx_version}) |
|
167 |
endif() |
|
2641 | 168 |
|
8093
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
169 |
#lower systems don't have enough processing power anyway |
8279
c03d64969112
less linking needed, raise minimum_osx_version when videorec is enabled
koda
parents:
8272
diff
changeset
|
170 |
if (minimum_macosx_version VERSION_LESS "10.4") |
7220 | 171 |
message(FATAL_ERROR "Hedgewars is not supported on Mac OS X pre-10.4") |
172 |
endif() |
|
2929 | 173 |
|
7220 | 174 |
#workaround for http://playcontrol.net/ewing/jibberjabber/big_behind-the-scenes_chang.html#SDL_mixer (Update 2) |
8279
c03d64969112
less linking needed, raise minimum_osx_version when videorec is enabled
koda
parents:
8272
diff
changeset
|
175 |
if(current_macosx_version VERSION_EQUAL "10.4") |
7220 | 176 |
find_package(SDL_mixer REQUIRED) |
177 |
set(DYLIB_SMPEG "-dylib_file @loader_path/Frameworks/smpeg.framework/Versions/A/smpeg:${SDLMIXER_LIBRARY}/Versions/A/Frameworks/smpeg.framework/Versions/A/smpeg") |
|
178 |
set(DYLIB_MIKMOD "-dylib_file @loader_path/Frameworks/mikmod.framework/Versions/A/mikmod:${SDLMIXER_LIBRARY}/Versions/A/Frameworks/mikmod.framework/Versions/A/mikmod") |
|
8348 | 179 |
set(CMAKE_C_FLAGS "${DYLIB_SMPEG} ${DYLIB_MIKMOD}") |
8347 | 180 |
list(APPEND pascal_flags "-k${DYLIB_SMPEG}" "-k${DYLIB_MIKMOD}") |
7220 | 181 |
endif() |
7114
e0110a1229b7
add NOPNG to cmake to explicitly disable PNG dependency
koda
parents:
7113
diff
changeset
|
182 |
|
7220 | 183 |
#CMAKE_OSX_ARCHITECTURES and CMAKE_OSX_SYSROOT need to be set for universal binary and correct linking |
184 |
if(NOT CMAKE_OSX_ARCHITECTURES) |
|
8279
c03d64969112
less linking needed, raise minimum_osx_version when videorec is enabled
koda
parents:
8272
diff
changeset
|
185 |
if(current_macosx_version VERSION_LESS "10.6") |
7220 | 186 |
if(${CMAKE_SYSTEM_PROCESSOR} MATCHES "powerpc*") |
187 |
set(CMAKE_OSX_ARCHITECTURES "ppc7400") |
|
188 |
else() |
|
189 |
set(CMAKE_OSX_ARCHITECTURES "i386") |
|
190 |
endif() |
|
191 |
else() |
|
192 |
set(CMAKE_OSX_ARCHITECTURES "x86_64") |
|
193 |
endif() |
|
194 |
endif() |
|
5053 | 195 |
|
7220 | 196 |
#CMAKE_OSX_SYSROOT is set at the system version we are supposed to build on |
197 |
#we need to provide the correct one when host and target differ |
|
8279
c03d64969112
less linking needed, raise minimum_osx_version when videorec is enabled
koda
parents:
8272
diff
changeset
|
198 |
if(NOT ${minimum_macosx_version} VERSION_EQUAL ${current_macosx_version}) |
c03d64969112
less linking needed, raise minimum_osx_version when videorec is enabled
koda
parents:
8272
diff
changeset
|
199 |
if(minimum_macosx_version VERSION_EQUAL "10.4") |
7220 | 200 |
set(CMAKE_OSX_SYSROOT "/Developer/SDKs/MacOSX10.4u.sdk/") |
8929 | 201 |
set(CMAKE_C_COMPILER "/Developer/usr/bin/gcc-4.0") |
202 |
set(CMAKE_CXX_COMPILER "/Developer/usr/bin/g++-4.0") |
|
7220 | 203 |
else() |
204 |
string(REGEX REPLACE "([0-9]+.[0-9]+).[0-9]+" "\\1" sdk_version ${minimum_macosx_version}) |
|
205 |
set(CMAKE_OSX_SYSROOT "/Developer/SDKs/MacOSX${sdk_version}.sdk/") |
|
206 |
endif() |
|
207 |
endif() |
|
2641 | 208 |
|
7220 | 209 |
#add user framework directory, other paths can be passed via FPFLAGS |
8347 | 210 |
list(APPEND pascal_flags "-Ff~/Library/Frameworks") |
7220 | 211 |
#set deployment target |
8347 | 212 |
list(APPEND pascal_flags "-k-macosx_version_min" "-k${minimum_macosx_version}" "-XR${CMAKE_OSX_SYSROOT}") |
2015 | 213 |
endif(APPLE) |
214 |
||
2406 | 215 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
216 |
#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
|
217 |
if (CMAKE_BUILD_TYPE) |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
218 |
string (TOUPPER ${CMAKE_BUILD_TYPE} CMAKE_BUILD_TYPE) |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
219 |
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
|
220 |
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
|
221 |
message (STATUS "Unknown build type, using default (${default_build_type})") |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
222 |
endif () |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
223 |
else (CMAKE_BUILD_TYPE) |
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
224 |
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
|
225 |
endif (CMAKE_BUILD_TYPE) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
226 |
|
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
227 |
|
7944 | 228 |
#set default flags values for all projects (unless MINIMAL_FLAGS is true) |
8347 | 229 |
if(NOT ${MINIMAL_FLAGS}) |
9068
3401390f03cf
on Windows link libgcc statically to reduce the number of dlls
koda
parents:
8929
diff
changeset
|
230 |
if(WINDOWS) |
3401390f03cf
on Windows link libgcc statically to reduce the number of dlls
koda
parents:
8929
diff
changeset
|
231 |
#this flags prevents a few dll hell problems |
3401390f03cf
on Windows link libgcc statically to reduce the number of dlls
koda
parents:
8929
diff
changeset
|
232 |
set(CMAKE_C_FLAGS "-static-libgcc ${CMAKE_C_FLAGS}") |
3401390f03cf
on Windows link libgcc statically to reduce the number of dlls
koda
parents:
8929
diff
changeset
|
233 |
endif(WINDOWS) |
8348 | 234 |
set(CMAKE_C_FLAGS "-pipe ${CMAKE_C_FLAGS}") |
235 |
set(CMAKE_C_FLAGS_RELEASE "-w -Os -fomit-frame-pointer ${CMAKE_C_FLAGS_RELEASE}") |
|
236 |
set(CMAKE_C_FLAGS_DEBUG "-Wall -O0 -g -DDEBUG ${CMAKE_C_FLAGS_DEBUG}") |
|
7944 | 237 |
set(CMAKE_CXX_FLAGS ${CMAKE_C_FLAGS}) |
238 |
set(CMAKE_CXX_FLAGS_RELEASE ${CMAKE_C_FLAGS_RELEASE}) |
|
239 |
set(CMAKE_CXX_FLAGS_DEBUG ${CMAKE_C_FLAGS_DEBUG}) |
|
240 |
else() |
|
241 |
#CMake adds a lot of additional configuration flags, so let's clear them up |
|
242 |
set(CMAKE_C_FLAGS_RELEASE "") |
|
243 |
set(CMAKE_C_FLAGS_DEBUG "-Wall -DDEBUG") |
|
244 |
set(CMAKE_CXX_FLAGS_RELEASE "") |
|
245 |
set(CMAKE_CXX_FLAGS_DEBUG "-Wall -DDEBUG") |
|
246 |
endif() |
|
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
247 |
|
8907 | 248 |
|
249 |
#TESTING TIME |
|
8669
3f9853888d4f
user correct variable and slimmer test, version typos, .dll.a updated
koda
parents:
8666
diff
changeset
|
250 |
include(CheckCCompilerFlag) |
8907 | 251 |
|
252 |
#check for noexecstack on ELF, should be set on Gentoo and similar |
|
8669
3f9853888d4f
user correct variable and slimmer test, version typos, .dll.a updated
koda
parents:
8666
diff
changeset
|
253 |
set(CMAKE_REQUIRED_FLAGS "-Wl,-z -Wl,noexecstack") |
3f9853888d4f
user correct variable and slimmer test, version typos, .dll.a updated
koda
parents:
8666
diff
changeset
|
254 |
check_c_compiler_flag("" HAVE_NOEXECSTACK) #empty because we are testing a linker flag |
8665
3ff8694d9e22
rewritten findfreepascal, moved checkstack code elsewhere
koda
parents:
8659
diff
changeset
|
255 |
if(HAVE_NOEXECSTACK) |
3ff8694d9e22
rewritten findfreepascal, moved checkstack code elsewhere
koda
parents:
8659
diff
changeset
|
256 |
list(APPEND pascal_flags "-k-z" "-knoexecstack") |
8907 | 257 |
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CMAKE_REQUIRED_FLAGS}") |
258 |
endif() |
|
259 |
unset(CMAKE_REQUIRED_FLAGS) |
|
260 |
||
261 |
#check for ASLR and DEP security features on Windows |
|
262 |
#both supported in binutils >= 2.20, available since Vista and XP SP2 respectively |
|
263 |
set(CMAKE_REQUIRED_FLAGS "-Wl,--nxcompat -Wl,--dynamicbase") |
|
264 |
check_c_compiler_flag("" HAVE_WINASLRDEP) #empty because we are testing a linker flag |
|
265 |
if(HAVE_WINASLRDEP) |
|
266 |
list(APPEND pascal_flags "-k--nxcompat" "-k--dynamicbase") |
|
267 |
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CMAKE_REQUIRED_FLAGS}") |
|
8665
3ff8694d9e22
rewritten findfreepascal, moved checkstack code elsewhere
koda
parents:
8659
diff
changeset
|
268 |
endif() |
8669
3f9853888d4f
user correct variable and slimmer test, version typos, .dll.a updated
koda
parents:
8666
diff
changeset
|
269 |
unset(CMAKE_REQUIRED_FLAGS) |
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
270 |
|
7397
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
271 |
#parse additional parameters |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
272 |
if(FPFLAGS OR GHFLAGS) |
8611
90f445317e8a
support WARNING message status on cmake 2.6 (bug 524)
koda
parents:
8597
diff
changeset
|
273 |
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
|
274 |
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
|
275 |
separate_arguments(ghflags_parsed UNIX_COMMAND ${GHFLAGS}) |
9104 | 276 |
else() |
277 |
message(${WARNING} "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
|
278 |
endif() |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
279 |
endif() |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
280 |
|
8707 | 281 |
list(APPEND pascal_flags ${fpflags_parsed} # user flags |
282 |
"-B" # compile all units |
|
283 |
"-vm4079,4080,4081" # fpc verbosity output format |
|
284 |
"-FE${PROJECT_BINARY_DIR}/bin" # fpc binaries output directory |
|
8706 | 285 |
"-FU${PROJECT_BINARY_DIR}/hedgewars" # fpc units output directory |
8707 | 286 |
"-Fl${PROJECT_BINARY_DIR}/bin" # fpc linking directory (win/unix) |
287 |
"-Fi${PROJECT_BINARY_DIR}/hedgewars" # fpc .inc path (for out of source builds) |
|
288 |
"-k-L${PROJECT_BINARY_DIR}/bin" # ld linking directory (unix/osx) |
|
289 |
"-Cs2000000" # stack size |
|
290 |
"-vewnq" # fpc output verbosity |
|
291 |
"-dDEBUGFILE" # macro for engine output |
|
8283 | 292 |
) |
8707 | 293 |
list(APPEND haskell_flags ${ghflags_parsed} # user flags |
294 |
"-O2" # optimise for faster code |
|
8644 | 295 |
) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
296 |
|
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
297 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
298 |
#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
|
299 |
message(STATUS "Using ${CMAKE_BUILD_TYPE} configuration") |
7709
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
300 |
if(CMAKE_BUILD_TYPE MATCHES "DEBUG") |
8707 | 301 |
list(APPEND pascal_flags "-O-" # disable all optimisations |
302 |
"-g" # enable debug symbols |
|
303 |
"-gl" # add line info to bt |
|
304 |
"-gv" # allow valgrind |
|
8555 | 305 |
) |
8707 | 306 |
list(APPEND haskell_flags "-Wall" # all warnings |
307 |
"-debug" # debug mode |
|
308 |
"-dcore-lint" # internal sanity check |
|
8644 | 309 |
) |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
310 |
else() |
8707 | 311 |
list(APPEND pascal_flags "-Os" # optimise for size |
312 |
"-Xs" # strip binary |
|
313 |
"-Si" # turn on inlining |
|
8555 | 314 |
) |
8707 | 315 |
list(APPEND haskell_flags "-w" # no warnings |
8644 | 316 |
) |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
317 |
endif() |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
318 |
|
8686
d303da4568b7
introduce find_package_or_fail/disable to group together similar cmake code
koda
parents:
8683
diff
changeset
|
319 |
include(${CMAKE_MODULE_PATH}/utils.cmake) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
320 |
|
7993 | 321 |
#Haskell compiler discovery (for server and engine in c) |
322 |
if((NOT NOSERVER) OR NOPASCAL) |
|
7220 | 323 |
if(GHC) |
324 |
set(ghc_executable ${GHC}) |
|
325 |
else() |
|
326 |
find_program(ghc_executable ghc) |
|
327 |
endif() |
|
5053 | 328 |
|
7220 | 329 |
if(ghc_executable) |
7973 | 330 |
exec_program(${ghc_executable} ARGS "-V" OUTPUT_VARIABLE ghc_version_long) |
331 |
string(REGEX REPLACE ".*([0-9]+\\.[0-9]+\\.[0-9]+)" "\\1" ghc_version "${ghc_version_long}") |
|
332 |
message(STATUS "Found GHC: ${ghc_executable} (version ${ghc_version})") |
|
7220 | 333 |
else() |
7973 | 334 |
message(STATUS "Could NOT find GHC, needed by gameServer and pas2c") |
7220 | 335 |
endif() |
7973 | 336 |
endif() |
337 |
||
338 |
||
339 |
#check gameServer |
|
340 |
if((ghc_executable) AND (NOT NOSERVER) AND (NOT WEBGL)) |
|
341 |
set(HAVE_NETSERVER true) |
|
342 |
add_subdirectory(gameServer) |
|
7223 | 343 |
else() |
7973 | 344 |
message(STATUS "Skipping gameServer target") |
7220 | 345 |
set(HAVE_NETSERVER false) |
7223 | 346 |
endif() |
1415
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1370
diff
changeset
|
347 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
348 |
|
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
349 |
#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
|
350 |
find_package(Lua) |
7973 | 351 |
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
|
352 |
message(STATUS "Found LUA: ${LUA_DEFAULT}") |
7223 | 353 |
else() |
7993 | 354 |
message(STATUS "Using internal LUA library") |
7220 | 355 |
add_subdirectory(misc/liblua) |
8093
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
356 |
#linking with liblua.a requires system readline |
8347 | 357 |
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
|
358 |
endif() |
7223 | 359 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
360 |
|
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
|
361 |
#physfs discovery |
9096
b3041025c271
fix the cmake flag PHYSFS_SYSTEM being called SYSTEM_PHYSFS in the code
sheepluva
parents:
9091
diff
changeset
|
362 |
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
|
363 |
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
|
364 |
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
|
365 |
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
|
366 |
|
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
|
367 |
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
|
368 |
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
|
369 |
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
|
370 |
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
|
371 |
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
|
372 |
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
|
373 |
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
|
374 |
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
|
375 |
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
|
376 |
|
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
|
377 |
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
|
378 |
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
|
379 |
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
|
380 |
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
|
381 |
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
|
382 |
|
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
|
383 |
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
|
384 |
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
|
385 |
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
|
386 |
else() |
8528 | 387 |
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
|
388 |
set(physfs_output_name "hw_physfs") |
8528 | 389 |
add_subdirectory(misc/libphysfs) |
8558 | 390 |
#-XLA is a beta fpc flag that renames libraries before passing them to the linker |
391 |
#we also have to pass PHYSFS_INTERNAL to satisfy windows runtime requirements |
|
392 |
#(should be harmless on other platforms) |
|
393 |
list(APPEND pascal_flags "-XLAphysfs=${physfs_output_name}" "-dPHYSFS_INTERNAL") |
|
8528 | 394 |
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
|
395 |
|
8688 | 396 |
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
|
397 |
|
8671 | 398 |
#physfs helper library |
8528 | 399 |
add_subdirectory(misc/libphyslayer) |
8283 | 400 |
|
7993 | 401 |
if(NOPASCAL) |
7973 | 402 |
if (NOT ghc_executable) |
7993 | 403 |
message(FATAL_ERROR "A Haskell compiler is required to build engine in C") |
7973 | 404 |
endif() |
9130
4f4b71da3559
move sdlmain_osx aside in its own folder so its include path is not contaminated
koda
parents:
9127
diff
changeset
|
405 |
add_subdirectory(hedgewars/sdlmain_osx) |
7973 | 406 |
#pascal to c converter |
407 |
add_subdirectory(tools/pas2c) |
|
7999 | 408 |
add_subdirectory(project_files/hwc) |
7973 | 409 |
else() |
7993 | 410 |
#main pascal engine |
7973 | 411 |
add_subdirectory(hedgewars) |
8671 | 412 |
endif() |
413 |
||
7993 | 414 |
if(WEBGL) |
415 |
#WEBGL deps |
|
8096 | 416 |
else(WEBGL) |
7973 | 417 |
#Android related build scripts |
8833 | 418 |
#TODO: when ANDROID, LIBENGINE should be set |
7973 | 419 |
if(ANDROID) |
420 |
add_subdirectory(project_files/Android-build) |
|
8833 | 421 |
else(ANDROID) |
7973 | 422 |
add_subdirectory(bin) |
423 |
add_subdirectory(QTfrontend) |
|
424 |
add_subdirectory(share) |
|
425 |
add_subdirectory(tools) |
|
8833 | 426 |
endif(ANDROID) |
8096 | 427 |
endif(WEBGL) |
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
428 |
|
9091
bafadc6b4516
change cpack configuration file name so that it's not excluded by 'make package_source'
koda
parents:
9086
diff
changeset
|
429 |
include(${CMAKE_MODULE_PATH}/cpackvars.cmake) |
184 | 430 |