author | nemo |
Wed, 06 Mar 2013 08:26:14 -0500 | |
changeset 8668 | b04a3724e328 |
parent 8666 | 1652c1d9adc8 |
child 8669 | 3f9853888d4f |
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 |
|
8087
ccc99eebdac2
little cmake cleanup, search installed modules first, then our own
koda
parents:
8082
diff
changeset
|
18 |
#use available modules, fallback to ours if not present (CMP0017 helps) |
8640
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
19 |
set(CMAKE_MODULE_PATH "${CMAKE_ROOT}/Modules" "${CMAKE_SOURCE_DIR}/cmake_modules") |
5405 | 20 |
|
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
|
21 |
|
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
22 |
#possible cmake configuration |
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
|
23 |
option(NOSERVER "Disable gameServer build [default: auto]" OFF) |
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
|
24 |
option(NOPNG "Disable screenshoot compression [default: auto]" OFF) |
8666
1652c1d9adc8
rework ffmpeg/libav/videorec linking and their cmake discovery
koda
parents:
8665
diff
changeset
|
25 |
option(NOVIDEOREC "Disable video recording [default: 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
|
26 |
|
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
|
27 |
#set this to ON when 2.1.0 becomes more widespread (and only for linux) |
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 |
option(SYSTEM_PHYSFS "Use system physfs [default:off]" OFF) |
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
|
29 |
|
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
|
30 |
option(BUILD_ENGINE_LIBRARY "Enable hwengine library [default: off]" OFF) |
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
|
31 |
option(ANDROID "Enable Android build [default: off]" OFF) |
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
|
32 |
option(MINIMAL_FLAGS "Respect system flags as much as possible [default: off]" OFF) |
8659 | 33 |
if(APPLE) |
34 |
option(NOAUTOUPDATE "Disable OS X Sparkle update checking" OFF) |
|
35 |
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
|
36 |
|
8333
416cb5e5a405
move DATA_INSTALL_DIR to the configurable options section
koda
parents:
8331
diff
changeset
|
37 |
set(FPFLAGS "" CACHE STRING "Additional Freepascal flags") |
416cb5e5a405
move DATA_INSTALL_DIR to the configurable options section
koda
parents:
8331
diff
changeset
|
38 |
set(GHFLAGS "" CACHE STRING "Additional Haskell flags") |
416cb5e5a405
move DATA_INSTALL_DIR to the configurable options section
koda
parents:
8331
diff
changeset
|
39 |
if(UNIX AND NOT APPLE) |
416cb5e5a405
move DATA_INSTALL_DIR to the configurable options section
koda
parents:
8331
diff
changeset
|
40 |
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
|
41 |
endif() |
8104
09c38cdf380d
show console on win when debugging to see frontend messages
koda
parents:
8093
diff
changeset
|
42 |
|
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
|
43 |
|
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
44 |
#detect Mercurial revision and init rev/hash information |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
45 |
find_program(HGCOMMAND hg) |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
46 |
if(HGCOMMAND AND (EXISTS ${CMAKE_SOURCE_DIR}/.hg)) |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
47 |
execute_process(COMMAND ${HGCOMMAND} identify -in |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
48 |
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
49 |
OUTPUT_VARIABLE internal_version |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
50 |
ERROR_QUIET |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
51 |
) |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
52 |
#check local repo status |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
53 |
string(REGEX REPLACE "[^+]" "" HGCHANGED ${internal_version}) |
8650 | 54 |
string(REGEX REPLACE "[0-9a-zA-Z]+(.*) ([0-9]+)(.*)" "\\2" HEDGEWARS_REVISION ${internal_version}) |
55 |
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
|
56 |
|
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
57 |
if(HGCHANGED) |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
58 |
message(${WARNING} "You have uncommitted changes in your repository!") |
8146 | 59 |
endif() |
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
60 |
#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
|
61 |
set(default_build_type "DEBUG") |
8641 | 62 |
#write down hash and rev for easy picking should hg be missing |
8650 | 63 |
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
|
64 |
else() |
7709
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
65 |
set(default_build_type "RELEASE") |
8642
d7062e684466
use rev info from the just created file when configuring without mercurial
koda
parents:
8641
diff
changeset
|
66 |
# 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
|
67 |
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
|
68 |
if(version_info) |
d7062e684466
use rev info from the just created file when configuring without mercurial
koda
parents:
8641
diff
changeset
|
69 |
file(STRINGS ${version_info} internal_version REGEX "rev") |
8650 | 70 |
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
|
71 |
file(STRINGS ${version_info} internal_version REGEX "hash") |
8650 | 72 |
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
|
73 |
else() |
d7062e684466
use rev info from the just created file when configuring without mercurial
koda
parents:
8641
diff
changeset
|
74 |
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
|
75 |
"will be incorrect!!! Contact your source provider to fix this!") |
8650 | 76 |
set(HEDGEWARS_REVISION "0000") |
77 |
set(HEDGEWARS_HASH "unknown") |
|
8642
d7062e684466
use rev info from the just created file when configuring without mercurial
koda
parents:
8641
diff
changeset
|
78 |
endif() |
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
79 |
endif() |
2672 | 80 |
|
1107 | 81 |
|
5405 | 82 |
#versioning |
5407 | 83 |
set(CPACK_PACKAGE_VERSION_MAJOR 0) |
84 |
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
|
85 |
set(CPACK_PACKAGE_VERSION_PATCH 19) |
7960 | 86 |
set(HEDGEWARS_PROTO_VER 44) |
5407 | 87 |
set(HEDGEWARS_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}") |
5405 | 88 |
|
8650 | 89 |
message(STATUS "Building ${HEDGEWARS_VERSION}-r${HEDGEWARS_REVISION} (${HEDGEWARS_HASH})") |
907 | 90 |
|
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
91 |
|
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
92 |
#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
|
93 |
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
|
94 |
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
|
95 |
|
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
96 |
#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
|
97 |
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
|
98 |
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
|
99 |
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
|
100 |
|
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
|
101 |
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
|
102 |
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
|
103 |
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
|
104 |
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
|
105 |
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
|
106 |
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
|
107 |
set(HEDGEWARS_FULL_DATADIR "${HEDGEWARS_DATADIR}") |
7718
97ba379164ec
use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents:
7709
diff
changeset
|
108 |
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
|
109 |
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
|
110 |
|
8317
ec9f94ab2737
remove the CROSSAPPLE option until a better solution is found
koda
parents:
8316
diff
changeset
|
111 |
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
|
112 |
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
|
113 |
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
|
114 |
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
|
115 |
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
|
116 |
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
|
117 |
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
|
118 |
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
|
119 |
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
|
120 |
set(CMAKE_PREFIX_PATH "${CMAKE_SOURCE_DIR}/misc/winutils/") |
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 |
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
|
122 |
endif() |
7256 | 123 |
endif() |
124 |
||
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
|
125 |
|
7256 | 126 |
if(APPLE) |
127 |
set(CMAKE_FIND_FRAMEWORK "FIRST") |
|
3697 | 128 |
|
7220 | 129 |
#what system are we building for |
130 |
set(minimum_macosx_version $ENV{MACOSX_DEPLOYMENT_TARGET}) |
|
3697 | 131 |
|
7220 | 132 |
#detect on which system we are: if sw_vers cannot be found for any reason (re)use minimum_macosx_version |
133 |
find_program(sw_vers sw_vers) |
|
134 |
if(sw_vers) |
|
8093
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
135 |
execute_process(COMMAND ${sw_vers} "-productVersion" |
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
136 |
OUTPUT_VARIABLE current_macosx_version |
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
137 |
OUTPUT_STRIP_TRAILING_WHITESPACE) |
7220 | 138 |
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
|
139 |
else() |
7220 | 140 |
if(NOT minimum_macosx_version) |
141 |
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
|
142 |
else() |
8611
90f445317e8a
support WARNING message status on cmake 2.6 (bug 524)
koda
parents:
8597
diff
changeset
|
143 |
message(${WARNING} "sw_vers not found! Fallback to MACOSX_DEPLOYMENT_TARGET variable") |
7220 | 144 |
set(current_macosx_version ${minimum_macosx_version}) |
145 |
endif() |
|
146 |
endif() |
|
2641 | 147 |
|
7220 | 148 |
#if nothing is set, we deploy only for the current system |
149 |
if(NOT minimum_macosx_version) |
|
150 |
set(minimum_macosx_version ${current_macosx_version}) |
|
151 |
endif() |
|
2641 | 152 |
|
8093
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
153 |
#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
|
154 |
if (minimum_macosx_version VERSION_LESS "10.4") |
7220 | 155 |
message(FATAL_ERROR "Hedgewars is not supported on Mac OS X pre-10.4") |
156 |
endif() |
|
2929 | 157 |
|
7220 | 158 |
#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
|
159 |
if(current_macosx_version VERSION_EQUAL "10.4") |
7220 | 160 |
find_package(SDL_mixer REQUIRED) |
161 |
set(DYLIB_SMPEG "-dylib_file @loader_path/Frameworks/smpeg.framework/Versions/A/smpeg:${SDLMIXER_LIBRARY}/Versions/A/Frameworks/smpeg.framework/Versions/A/smpeg") |
|
162 |
set(DYLIB_MIKMOD "-dylib_file @loader_path/Frameworks/mikmod.framework/Versions/A/mikmod:${SDLMIXER_LIBRARY}/Versions/A/Frameworks/mikmod.framework/Versions/A/mikmod") |
|
8348 | 163 |
set(CMAKE_C_FLAGS "${DYLIB_SMPEG} ${DYLIB_MIKMOD}") |
8347 | 164 |
list(APPEND pascal_flags "-k${DYLIB_SMPEG}" "-k${DYLIB_MIKMOD}") |
7220 | 165 |
endif() |
7114
e0110a1229b7
add NOPNG to cmake to explicitly disable PNG dependency
koda
parents:
7113
diff
changeset
|
166 |
|
7220 | 167 |
#CMAKE_OSX_ARCHITECTURES and CMAKE_OSX_SYSROOT need to be set for universal binary and correct linking |
168 |
if(NOT CMAKE_OSX_ARCHITECTURES) |
|
8279
c03d64969112
less linking needed, raise minimum_osx_version when videorec is enabled
koda
parents:
8272
diff
changeset
|
169 |
if(current_macosx_version VERSION_LESS "10.6") |
7220 | 170 |
if(${CMAKE_SYSTEM_PROCESSOR} MATCHES "powerpc*") |
171 |
set(CMAKE_OSX_ARCHITECTURES "ppc7400") |
|
172 |
else() |
|
173 |
set(CMAKE_OSX_ARCHITECTURES "i386") |
|
174 |
endif() |
|
175 |
else() |
|
176 |
set(CMAKE_OSX_ARCHITECTURES "x86_64") |
|
177 |
endif() |
|
178 |
endif() |
|
5053 | 179 |
|
7220 | 180 |
#CMAKE_OSX_SYSROOT is set at the system version we are supposed to build on |
181 |
#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
|
182 |
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
|
183 |
if(minimum_macosx_version VERSION_EQUAL "10.4") |
7220 | 184 |
set(CMAKE_OSX_SYSROOT "/Developer/SDKs/MacOSX10.4u.sdk/") |
185 |
set(CMAKE_C_COMPILER "gcc-4.0") |
|
186 |
set(CMAKE_CXX_COMPILER "g++-4.0") |
|
187 |
else() |
|
188 |
string(REGEX REPLACE "([0-9]+.[0-9]+).[0-9]+" "\\1" sdk_version ${minimum_macosx_version}) |
|
189 |
set(CMAKE_OSX_SYSROOT "/Developer/SDKs/MacOSX${sdk_version}.sdk/") |
|
190 |
endif() |
|
191 |
endif() |
|
2641 | 192 |
|
7220 | 193 |
#add user framework directory, other paths can be passed via FPFLAGS |
8347 | 194 |
list(APPEND pascal_flags "-Ff~/Library/Frameworks") |
7220 | 195 |
#set deployment target |
8347 | 196 |
list(APPEND pascal_flags "-k-macosx_version_min" "-k${minimum_macosx_version}" "-XR${CMAKE_OSX_SYSROOT}") |
2015 | 197 |
endif(APPLE) |
198 |
||
2406 | 199 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
200 |
#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
|
201 |
if (CMAKE_BUILD_TYPE) |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
202 |
string (TOUPPER ${CMAKE_BUILD_TYPE} CMAKE_BUILD_TYPE) |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
203 |
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
|
204 |
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
|
205 |
message (STATUS "Unknown build type, using default (${default_build_type})") |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
206 |
endif () |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
207 |
else (CMAKE_BUILD_TYPE) |
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
208 |
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
|
209 |
endif (CMAKE_BUILD_TYPE) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
210 |
|
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
211 |
|
7944 | 212 |
#set default flags values for all projects (unless MINIMAL_FLAGS is true) |
8347 | 213 |
if(NOT ${MINIMAL_FLAGS}) |
8348 | 214 |
set(CMAKE_C_FLAGS "-pipe ${CMAKE_C_FLAGS}") |
215 |
set(CMAKE_C_FLAGS_RELEASE "-w -Os -fomit-frame-pointer ${CMAKE_C_FLAGS_RELEASE}") |
|
216 |
set(CMAKE_C_FLAGS_DEBUG "-Wall -O0 -g -DDEBUG ${CMAKE_C_FLAGS_DEBUG}") |
|
7944 | 217 |
set(CMAKE_CXX_FLAGS ${CMAKE_C_FLAGS}) |
218 |
set(CMAKE_CXX_FLAGS_RELEASE ${CMAKE_C_FLAGS_RELEASE}) |
|
219 |
set(CMAKE_CXX_FLAGS_DEBUG ${CMAKE_C_FLAGS_DEBUG}) |
|
220 |
else() |
|
221 |
#CMake adds a lot of additional configuration flags, so let's clear them up |
|
222 |
set(CMAKE_C_FLAGS_RELEASE "") |
|
223 |
set(CMAKE_C_FLAGS_DEBUG "-Wall -DDEBUG") |
|
224 |
set(CMAKE_CXX_FLAGS_RELEASE "") |
|
225 |
set(CMAKE_CXX_FLAGS_DEBUG "-Wall -DDEBUG") |
|
226 |
endif() |
|
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
227 |
|
8665
3ff8694d9e22
rewritten findfreepascal, moved checkstack code elsewhere
koda
parents:
8659
diff
changeset
|
228 |
#TODO: find out why we need this... |
3ff8694d9e22
rewritten findfreepascal, moved checkstack code elsewhere
koda
parents:
8659
diff
changeset
|
229 |
include(CheckCSourceCompiles) |
3ff8694d9e22
rewritten findfreepascal, moved checkstack code elsewhere
koda
parents:
8659
diff
changeset
|
230 |
set(CMAKE_REQUIRED_FLAG "-Wl,-z -Wl,noexecstack") |
3ff8694d9e22
rewritten findfreepascal, moved checkstack code elsewhere
koda
parents:
8659
diff
changeset
|
231 |
check_c_source_compiles("int main(void) { return 0; }" HAVE_NOEXECSTACK) |
3ff8694d9e22
rewritten findfreepascal, moved checkstack code elsewhere
koda
parents:
8659
diff
changeset
|
232 |
if(HAVE_NOEXECSTACK) |
3ff8694d9e22
rewritten findfreepascal, moved checkstack code elsewhere
koda
parents:
8659
diff
changeset
|
233 |
list(APPEND pascal_flags "-k-z" "-knoexecstack") |
3ff8694d9e22
rewritten findfreepascal, moved checkstack code elsewhere
koda
parents:
8659
diff
changeset
|
234 |
if(NOT ${MINIMAL_FLAGS}) |
3ff8694d9e22
rewritten findfreepascal, moved checkstack code elsewhere
koda
parents:
8659
diff
changeset
|
235 |
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CMAKE_REQUIRED_FLAG}") |
3ff8694d9e22
rewritten findfreepascal, moved checkstack code elsewhere
koda
parents:
8659
diff
changeset
|
236 |
endif() |
3ff8694d9e22
rewritten findfreepascal, moved checkstack code elsewhere
koda
parents:
8659
diff
changeset
|
237 |
endif() |
3ff8694d9e22
rewritten findfreepascal, moved checkstack code elsewhere
koda
parents:
8659
diff
changeset
|
238 |
unset(CMAKE_REQUIRED_FLAG) |
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
239 |
|
7397
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
240 |
#parse additional parameters |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
241 |
if(FPFLAGS OR GHFLAGS) |
8611
90f445317e8a
support WARNING message status on cmake 2.6 (bug 524)
koda
parents:
8597
diff
changeset
|
242 |
if(${allow_parse_args}) |
90f445317e8a
support WARNING message status on cmake 2.6 (bug 524)
koda
parents:
8597
diff
changeset
|
243 |
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
|
244 |
else() |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
245 |
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
|
246 |
separate_arguments(ghflags_parsed UNIX_COMMAND ${GHFLAGS}) |
7397
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
247 |
endif() |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
248 |
endif() |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
249 |
|
8597 | 250 |
list(APPEND pascal_flags ${fpflags_parsed} # user flags |
251 |
"-vm4079,4080,4081" # fpc output format |
|
252 |
"-B" # compile all units |
|
253 |
"-FE${PROJECT_BINARY_DIR}/bin" # fpc output directory |
|
254 |
"-Fl${PROJECT_BINARY_DIR}/bin" # fpc linking directory (win/unix) |
|
255 |
"-k-L${PROJECT_BINARY_DIR}/bin" # ld linking directory (unix/osx) |
|
256 |
"-Cs2000000" # stack size |
|
257 |
"-vewnq" # fpc output verbosity |
|
258 |
"-dDEBUGFILE" # macro for engine output |
|
8283 | 259 |
) |
8644 | 260 |
list(APPEND haskell_flags ${ghflags_parsed} # user flags |
261 |
"-O2" # optimise for faster code |
|
262 |
) |
|
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
263 |
|
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
264 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
265 |
#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
|
266 |
message(STATUS "Using ${CMAKE_BUILD_TYPE} configuration") |
7709
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
267 |
if(CMAKE_BUILD_TYPE MATCHES "DEBUG") |
8644 | 268 |
list(APPEND pascal_flags "-O-" # disable all optimisations |
269 |
"-g" # enable debug symbols |
|
270 |
"-gl" # add line info to bt |
|
271 |
"-gv" # allow valgrind |
|
8555 | 272 |
) |
8644 | 273 |
list(APPEND haskell_flags "-Wall" # all warnings |
274 |
"-debug" # debug mode |
|
275 |
"-dcore-lint" # internal sanity check |
|
276 |
) |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
277 |
else() |
8644 | 278 |
list(APPEND pascal_flags "-Os" # optimise for size |
279 |
"-Xs" # strip binary |
|
280 |
"-Si" # turn on inlining |
|
8555 | 281 |
) |
8644 | 282 |
list(APPEND haskell_flags "-w" # no warnings |
283 |
) |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
284 |
endif() |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
285 |
|
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
286 |
|
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
287 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
288 |
#server discovery |
7223 | 289 |
if(NOT NOSERVER) |
7220 | 290 |
if(GHC) |
291 |
set(ghc_executable ${GHC}) |
|
292 |
else() |
|
293 |
find_program(ghc_executable ghc) |
|
294 |
endif() |
|
5053 | 295 |
|
7220 | 296 |
if(ghc_executable) |
297 |
add_subdirectory(gameServer) |
|
7718
97ba379164ec
use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents:
7709
diff
changeset
|
298 |
message(STATUS "Found GHC: ${ghc_executable}") |
7220 | 299 |
else() |
8611
90f445317e8a
support WARNING message status on cmake 2.6 (bug 524)
koda
parents:
8597
diff
changeset
|
300 |
message(${WARNING} "Could NOT find GHC, server will not be built") |
7220 | 301 |
set(HAVE_NETSERVER false) |
302 |
endif() |
|
7223 | 303 |
else() |
304 |
message(STATUS "Server will not be built per user request") |
|
7220 | 305 |
set(HAVE_NETSERVER false) |
7223 | 306 |
endif() |
1415
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1370
diff
changeset
|
307 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
308 |
|
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
309 |
#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
|
310 |
find_package(Lua) |
7233
225179f64fd8
LUA_FOUND should surely be set only if the system lua was found.
nemo
parents:
7226
diff
changeset
|
311 |
if(LUA_FOUND) |
7817
6cc558a69b58
countless small optimisation for cmake, output messages are now coherent (mostly) and the options get fully respected (eg. skipping library search if not activated)
koda
parents:
7816
diff
changeset
|
312 |
message(STATUS "Found LUA: ${LUA_DEFAULT}") |
7223 | 313 |
else() |
7817
6cc558a69b58
countless small optimisation for cmake, output messages are now coherent (mostly) and the options get fully respected (eg. skipping library search if not activated)
koda
parents:
7816
diff
changeset
|
314 |
message(STATUS "LUA will be provided by the bundled sources") |
7220 | 315 |
add_subdirectory(misc/liblua) |
8093
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
316 |
#linking with liblua.a requires system readline |
8347 | 317 |
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
|
318 |
endif() |
7223 | 319 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
320 |
|
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
|
321 |
#physfs discovery |
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
|
322 |
if (${SYSTEM_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
|
323 |
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
|
324 |
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
|
325 |
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
|
326 |
|
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
|
327 |
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
|
328 |
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
|
329 |
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
|
330 |
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
|
331 |
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
|
332 |
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
|
333 |
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
|
334 |
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
|
335 |
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
|
336 |
|
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
|
337 |
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
|
338 |
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
|
339 |
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
|
340 |
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
|
341 |
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
|
342 |
|
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
|
343 |
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
|
344 |
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
|
345 |
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
|
346 |
else() |
8528 | 347 |
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
|
348 |
set(physfs_output_name "hw_physfs") |
8528 | 349 |
add_subdirectory(misc/libphysfs) |
8558 | 350 |
#-XLA is a beta fpc flag that renames libraries before passing them to the linker |
351 |
#we also have to pass PHYSFS_INTERNAL to satisfy windows runtime requirements |
|
352 |
#(should be harmless on other platforms) |
|
353 |
list(APPEND pascal_flags "-XLAphysfs=${physfs_output_name}" "-dPHYSFS_INTERNAL") |
|
8528 | 354 |
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
|
355 |
|
8666
1652c1d9adc8
rework ffmpeg/libav/videorec linking and their cmake discovery
koda
parents:
8665
diff
changeset
|
356 |
if(NOT ${NOVIDEOREC}) |
1652c1d9adc8
rework ffmpeg/libav/videorec linking and their cmake discovery
koda
parents:
8665
diff
changeset
|
357 |
find_package(FFMPEG) |
1652c1d9adc8
rework ffmpeg/libav/videorec linking and their cmake discovery
koda
parents:
8665
diff
changeset
|
358 |
if(NOT ${FFMPEG_FOUND}) |
1652c1d9adc8
rework ffmpeg/libav/videorec linking and their cmake discovery
koda
parents:
8665
diff
changeset
|
359 |
message(FATAL_ERROR "Missing FFMPEG/Libav! Rerun cmake with -DNOVIDEOREC=on to disable video recording") |
1652c1d9adc8
rework ffmpeg/libav/videorec linking and their cmake discovery
koda
parents:
8665
diff
changeset
|
360 |
endif() |
1652c1d9adc8
rework ffmpeg/libav/videorec linking and their cmake discovery
koda
parents:
8665
diff
changeset
|
361 |
else() |
1652c1d9adc8
rework ffmpeg/libav/videorec linking and their cmake discovery
koda
parents:
8665
diff
changeset
|
362 |
set(FFMPEG_FOUND false) |
1652c1d9adc8
rework ffmpeg/libav/videorec linking and their cmake discovery
koda
parents:
8665
diff
changeset
|
363 |
endif() |
1652c1d9adc8
rework ffmpeg/libav/videorec linking and their cmake discovery
koda
parents:
8665
diff
changeset
|
364 |
|
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
|
365 |
# |
8528 | 366 |
add_subdirectory(misc/libphyslayer) |
8283 | 367 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
368 |
#main engine |
184 | 369 |
add_subdirectory(hedgewars) |
5053 | 370 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
371 |
#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
|
372 |
if(ANDROID) |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
373 |
#run cmake -DANDROID=1 to enable this |
7220 | 374 |
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
|
375 |
endif() |
5381
8f95038f3f75
Removed protocol check, using CMake now to setup the building scripts using Templates/* removed old scripts
Xeli
parents:
5223
diff
changeset
|
376 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
377 |
#TODO: when ANDROID, BUILD_ENGINE_LIBRARY should be set |
8082
675372256a01
lotsa hackery to get frontend somehow link libengine...
koda
parents:
8078
diff
changeset
|
378 |
if(NOT ANDROID) |
7220 | 379 |
add_subdirectory(bin) |
380 |
add_subdirectory(QTfrontend) |
|
381 |
add_subdirectory(share) |
|
382 |
add_subdirectory(tools) |
|
3515 | 383 |
endif() |
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
384 |
|
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
385 |
|
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
386 |
|
5405 | 387 |
# CPack variables |
3338
dee9beba85cc
patch by raptor (polished by me) to allow tiger/xcode24 compilation
koda
parents:
3306
diff
changeset
|
388 |
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Hedgewars, a free turn-based strategy") |
2827 | 389 |
set(CPACK_PACKAGE_VENDOR "Hedgewars Project") |
907 | 390 |
set(CPACK_PACKAGE_FILE_NAME "hedgewars-${HEDGEWARS_VERSION}") |
391 |
set(CPACK_SOURCE_PACKAGE_FILE_NAME "hedgewars-src-${HEDGEWARS_VERSION}") |
|
1459 | 392 |
set(CPACK_SOURCE_GENERATOR "TBZ2") |
1173
70b0acd4548c
Revert accidental nsis installer generator regression
unc0rr
parents:
1159
diff
changeset
|
393 |
set(CPACK_PACKAGE_EXECUTABLES "hedgewars" "hedgewars") |
458 | 394 |
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/COPYING") |
907 | 395 |
set(CPACK_PACKAGE_INSTALL_DIRECTORY "Hedgewars ${HEDGEWARS_VERSION}") |
184 | 396 |
|
397 |
if(WIN32 AND NOT UNIX) |
|
7220 | 398 |
set(CPACK_NSIS_DISPLAY_NAME "Hedgewars") |
399 |
set(CPACK_NSIS_HELP_LINK "http://www.hedgewars.org/") |
|
400 |
set(CPACK_NSIS_URL_INFO_ABOUT "http://www.hedgewars.org/") |
|
401 |
set(CPACK_NSIS_CONTACT "unC0Rr@gmail.com") |
|
402 |
set(CPACK_NSIS_MODIFY_PATH OFF) |
|
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
|
403 |
set(CPACK_NSIS_EXECUTABLES_DIRECTORY "${target_binary_install_dir}") |
7220 | 404 |
set(CPACK_GENERATOR "ZIP;NSIS") |
405 |
set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "hedgewars") |
|
184 | 406 |
else(WIN32 AND NOT UNIX) |
7220 | 407 |
set(CPACK_STRIP_FILES "bin/hedgewars;bin/hwengine") |
184 | 408 |
endif(WIN32 AND NOT UNIX) |
409 |
||
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
410 |
set(CPACK_SOURCE_IGNORE_FILES |
8640
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
411 |
#temporary files |
7220 | 412 |
"~" |
8640
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
413 |
".swp" |
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
414 |
#version control |
7220 | 415 |
"\\\\.hg" |
8640
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
416 |
#output binary/library |
7220 | 417 |
"\\\\.exe$" |
418 |
"\\\\.a$" |
|
8640
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
419 |
"\\\\.so$" |
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
420 |
"\\\\.dylib$" |
7220 | 421 |
"\\\\.dll$" |
8640
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
422 |
"\\\\.ppu$" |
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
423 |
"\\\\.o$" |
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
424 |
"\\\\.cxx$" |
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
425 |
#graphics |
7220 | 426 |
"\\\\.xcf$" |
8640
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
427 |
"\\\\.svg$" |
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
428 |
"\\\\.svgz$" |
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
429 |
"\\\\.psd$" |
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
430 |
"\\\\.sifz$" |
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
431 |
#misc |
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
432 |
"\\\\.core$" |
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
433 |
"\\\\.sh$" |
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
434 |
"\\\\.orig$" |
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
435 |
"\\\\.layout$" |
7220 | 436 |
"\\\\.db$" |
437 |
"\\\\.dof$" |
|
8640
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
438 |
#archives |
7220 | 439 |
"\\\\.zip$" |
440 |
"\\\\.gz$" |
|
441 |
"\\\\.bz2$" |
|
442 |
"\\\\.tmp$" |
|
8640
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
443 |
#cmake-configured files |
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
444 |
"hwconsts\\\\.cpp$" |
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
445 |
"config\\\\.inc$" |
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
446 |
"hwengine\\\\.desktop$" |
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
447 |
"Info\\\\.plist$" |
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
448 |
#other cmake generated files |
7220 | 449 |
"Makefile" |
450 |
"Doxyfile" |
|
451 |
"CMakeFiles" |
|
8640
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
452 |
"[dD]ebug$" |
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
453 |
"[rR]elease$" |
7220 | 454 |
"CPack" |
455 |
"cmake_install\\\\.cmake$" |
|
456 |
"CMakeCache\\\\.txt$" |
|
8640
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
457 |
# "^${CMAKE_CURRENT_SOURCE_DIR}/misc/libtremor" |
7220 | 458 |
# "^${CMAKE_CURRENT_SOURCE_DIR}/misc/libfreetype" |
8640
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
459 |
# "^${CMAKE_CURRENT_SOURCE_DIR}/misc/liblua" |
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
460 |
"^${CMAKE_CURRENT_SOURCE_DIR}/misc/libopenalbridge" |
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
461 |
"^${CMAKE_CURRENT_SOURCE_DIR}/project_files/frontlib" |
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
462 |
"^${CMAKE_CURRENT_SOURCE_DIR}/project_files/promotional_art" |
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
463 |
"^${CMAKE_CURRENT_SOURCE_DIR}/project_files/cmdlineClient" |
7220 | 464 |
"^${CMAKE_CURRENT_SOURCE_DIR}/tools/templates" |
8640
75d42abc9375
adjust cpack ignored files (libraries, mobile project files and win res files are still necessary)
koda
parents:
8636
diff
changeset
|
465 |
"^${CMAKE_CURRENT_SOURCE_DIR}/bin/checkstack*" |
7220 | 466 |
"^${CMAKE_CURRENT_SOURCE_DIR}/doc" |
467 |
"^${CMAKE_CURRENT_SOURCE_DIR}/templates" |
|
468 |
"^${CMAKE_CURRENT_SOURCE_DIR}/tmp" |
|
469 |
"^${CMAKE_CURRENT_SOURCE_DIR}/utils" |
|
470 |
"^${CMAKE_CURRENT_SOURCE_DIR}/share/hedgewars/Data/Maps/test" |
|
471 |
"^${CMAKE_CURRENT_SOURCE_DIR}/install_manifest.txt" |
|
472 |
"^${CMAKE_CURRENT_SOURCE_DIR}/CMakeCache.txt" |
|
473 |
"^${CMAKE_CURRENT_SOURCE_DIR}/hedgewars\\\\." |
|
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
474 |
) |
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
475 |
|
184 | 476 |
include(CPack) |
5407 | 477 |