author | koda |
Tue, 30 Apr 2013 01:47:30 +0200 | |
branch | cmake_pascal |
changeset 8869 | 11438c0bd46b |
parent 8821 | e85ff6e298b5 |
child 9224 | bce8cf41d666 |
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") |
8775
3cad01db0bae
apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents:
8770
diff
changeset
|
19 |
include(${CMAKE_MODULE_PATH}/utils.cmake) |
8806 | 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) |
8687 | 27 |
option(SYSTEM_PHYSFS "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 |
|
8687 | 29 |
option(BUILD_ENGINE_LIBRARY "Enable hwengine library (off)" OFF) |
30 |
option(ANDROID "Enable Android build (off)" OFF) |
|
31 |
||
32 |
if(UNIX AND NOT APPLE) |
|
8781 | 33 |
option(MINIMAL_CFLAGS "Respect system CFLAGS as much as possible (off)" OFF) |
8687 | 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 |
|
8333
416cb5e5a405
move DATA_INSTALL_DIR to the configurable options section
koda
parents:
8331
diff
changeset
|
38 |
set(FPFLAGS "" CACHE STRING "Additional Freepascal flags") |
416cb5e5a405
move DATA_INSTALL_DIR to the configurable options section
koda
parents:
8331
diff
changeset
|
39 |
set(GHFLAGS "" CACHE STRING "Additional Haskell flags") |
416cb5e5a405
move DATA_INSTALL_DIR to the configurable options section
koda
parents:
8331
diff
changeset
|
40 |
if(UNIX AND NOT APPLE) |
416cb5e5a405
move DATA_INSTALL_DIR to the configurable options section
koda
parents:
8331
diff
changeset
|
41 |
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
|
42 |
endif() |
8104
09c38cdf380d
show console on win when debugging to see frontend messages
koda
parents:
8093
diff
changeset
|
43 |
|
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
|
44 |
|
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
45 |
#detect Mercurial revision and init rev/hash information |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
46 |
find_program(HGCOMMAND hg) |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
47 |
if(HGCOMMAND AND (EXISTS ${CMAKE_SOURCE_DIR}/.hg)) |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
48 |
execute_process(COMMAND ${HGCOMMAND} identify -in |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
49 |
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
50 |
OUTPUT_VARIABLE internal_version |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
51 |
ERROR_QUIET |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
52 |
) |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
53 |
#check local repo status |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
54 |
string(REGEX REPLACE "[^+]" "" HGCHANGED ${internal_version}) |
8650 | 55 |
string(REGEX REPLACE "[0-9a-zA-Z]+(.*) ([0-9]+)(.*)" "\\2" HEDGEWARS_REVISION ${internal_version}) |
56 |
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
|
57 |
|
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
58 |
if(HGCHANGED) |
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
59 |
message(${WARNING} "You have uncommitted changes in your repository!") |
8146 | 60 |
endif() |
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
61 |
#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
|
62 |
set(default_build_type "DEBUG") |
8641 | 63 |
#write down hash and rev for easy picking should hg be missing |
8650 | 64 |
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
|
65 |
else() |
7709
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
66 |
set(default_build_type "RELEASE") |
8642
d7062e684466
use rev info from the just created file when configuring without mercurial
koda
parents:
8641
diff
changeset
|
67 |
# 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
|
68 |
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
|
69 |
if(version_info) |
d7062e684466
use rev info from the just created file when configuring without mercurial
koda
parents:
8641
diff
changeset
|
70 |
file(STRINGS ${version_info} internal_version REGEX "rev") |
8650 | 71 |
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
|
72 |
file(STRINGS ${version_info} internal_version REGEX "hash") |
8650 | 73 |
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
|
74 |
else() |
d7062e684466
use rev info from the just created file when configuring without mercurial
koda
parents:
8641
diff
changeset
|
75 |
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
|
76 |
"will be incorrect!!! Contact your source provider to fix this!") |
8650 | 77 |
set(HEDGEWARS_REVISION "0000") |
78 |
set(HEDGEWARS_HASH "unknown") |
|
8642
d7062e684466
use rev info from the just created file when configuring without mercurial
koda
parents:
8641
diff
changeset
|
79 |
endif() |
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
80 |
endif() |
2672 | 81 |
|
1107 | 82 |
|
5405 | 83 |
#versioning |
5407 | 84 |
set(CPACK_PACKAGE_VERSION_MAJOR 0) |
85 |
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
|
86 |
set(CPACK_PACKAGE_VERSION_PATCH 19) |
7960 | 87 |
set(HEDGEWARS_PROTO_VER 44) |
5407 | 88 |
set(HEDGEWARS_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}") |
5405 | 89 |
|
8650 | 90 |
message(STATUS "Building ${HEDGEWARS_VERSION}-r${HEDGEWARS_REVISION} (${HEDGEWARS_HASH})") |
907 | 91 |
|
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
92 |
|
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
93 |
#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
|
94 |
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
|
95 |
set(LIBRARY_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin) |
8869
11438c0bd46b
add useful variables for non-Makefile generators to set where we want our stuff built
koda
parents:
8821
diff
changeset
|
96 |
#these variables are for non-makefile generators |
11438c0bd46b
add useful variables for non-Makefile generators to set where we want our stuff built
koda
parents:
8821
diff
changeset
|
97 |
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${EXECUTABLE_OUTPUT_PATH}) |
11438c0bd46b
add useful variables for non-Makefile generators to set where we want our stuff built
koda
parents:
8821
diff
changeset
|
98 |
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG ${EXECUTABLE_OUTPUT_PATH}) |
11438c0bd46b
add useful variables for non-Makefile generators to set where we want our stuff built
koda
parents:
8821
diff
changeset
|
99 |
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE ${EXECUTABLE_OUTPUT_PATH}) |
11438c0bd46b
add useful variables for non-Makefile generators to set where we want our stuff built
koda
parents:
8821
diff
changeset
|
100 |
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LIBRARY_OUTPUT_PATH}) |
11438c0bd46b
add useful variables for non-Makefile generators to set where we want our stuff built
koda
parents:
8821
diff
changeset
|
101 |
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_DEBUG ${LIBRARY_OUTPUT_PATH}) |
11438c0bd46b
add useful variables for non-Makefile generators to set where we want our stuff built
koda
parents:
8821
diff
changeset
|
102 |
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELEASE ${LIBRARY_OUTPUT_PATH}) |
11438c0bd46b
add useful variables for non-Makefile generators to set where we want our stuff built
koda
parents:
8821
diff
changeset
|
103 |
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LIBRARY_OUTPUT_PATH}) |
11438c0bd46b
add useful variables for non-Makefile generators to set where we want our stuff built
koda
parents:
8821
diff
changeset
|
104 |
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE ${LIBRARY_OUTPUT_PATH}) |
11438c0bd46b
add useful variables for non-Makefile generators to set where we want our stuff built
koda
parents:
8821
diff
changeset
|
105 |
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_DEBUG ${LIBRARY_OUTPUT_PATH}) |
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
|
106 |
|
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
107 |
#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
|
108 |
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
|
109 |
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
|
110 |
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
|
111 |
|
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 |
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
|
113 |
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
|
114 |
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
|
115 |
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
|
116 |
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
|
117 |
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
|
118 |
set(HEDGEWARS_FULL_DATADIR "${HEDGEWARS_DATADIR}") |
7718
97ba379164ec
use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents:
7709
diff
changeset
|
119 |
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
|
120 |
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
|
121 |
|
8317
ec9f94ab2737
remove the CROSSAPPLE option until a better solution is found
koda
parents:
8316
diff
changeset
|
122 |
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
|
123 |
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
|
124 |
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
|
125 |
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
|
126 |
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
|
127 |
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
|
128 |
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
|
129 |
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
|
130 |
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
|
131 |
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
|
132 |
endif() |
7256 | 133 |
endif() |
134 |
||
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
|
135 |
|
7256 | 136 |
if(APPLE) |
137 |
set(CMAKE_FIND_FRAMEWORK "FIRST") |
|
3697 | 138 |
|
7220 | 139 |
#what system are we building for |
140 |
set(minimum_macosx_version $ENV{MACOSX_DEPLOYMENT_TARGET}) |
|
3697 | 141 |
|
7220 | 142 |
#detect on which system we are: if sw_vers cannot be found for any reason (re)use minimum_macosx_version |
143 |
find_program(sw_vers sw_vers) |
|
144 |
if(sw_vers) |
|
8093
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
145 |
execute_process(COMMAND ${sw_vers} "-productVersion" |
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
146 |
OUTPUT_VARIABLE current_macosx_version |
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
147 |
OUTPUT_STRIP_TRAILING_WHITESPACE) |
7220 | 148 |
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
|
149 |
else() |
7220 | 150 |
if(NOT minimum_macosx_version) |
151 |
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
|
152 |
else() |
8611
90f445317e8a
support WARNING message status on cmake 2.6 (bug 524)
koda
parents:
8597
diff
changeset
|
153 |
message(${WARNING} "sw_vers not found! Fallback to MACOSX_DEPLOYMENT_TARGET variable") |
7220 | 154 |
set(current_macosx_version ${minimum_macosx_version}) |
155 |
endif() |
|
156 |
endif() |
|
2641 | 157 |
|
7220 | 158 |
#if nothing is set, we deploy only for the current system |
159 |
if(NOT minimum_macosx_version) |
|
160 |
set(minimum_macosx_version ${current_macosx_version}) |
|
161 |
endif() |
|
2641 | 162 |
|
8093
2286a39140da
moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents:
8090
diff
changeset
|
163 |
#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
|
164 |
if (minimum_macosx_version VERSION_LESS "10.4") |
7220 | 165 |
message(FATAL_ERROR "Hedgewars is not supported on Mac OS X pre-10.4") |
166 |
endif() |
|
2929 | 167 |
|
7220 | 168 |
#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
|
169 |
if(current_macosx_version VERSION_EQUAL "10.4") |
7220 | 170 |
find_package(SDL_mixer REQUIRED) |
171 |
set(DYLIB_SMPEG "-dylib_file @loader_path/Frameworks/smpeg.framework/Versions/A/smpeg:${SDLMIXER_LIBRARY}/Versions/A/Frameworks/smpeg.framework/Versions/A/smpeg") |
|
172 |
set(DYLIB_MIKMOD "-dylib_file @loader_path/Frameworks/mikmod.framework/Versions/A/mikmod:${SDLMIXER_LIBRARY}/Versions/A/Frameworks/mikmod.framework/Versions/A/mikmod") |
|
8784 | 173 |
add_flag_append(CMAKE_C_FLAGS "${DYLIB_SMPEG} ${DYLIB_MIKMOD}") |
8775
3cad01db0bae
apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents:
8770
diff
changeset
|
174 |
add_flag_append(CMAKE_Pascal_FLAGS "-k${DYLIB_SMPEG}" "-k${DYLIB_MIKMOD}") |
7220 | 175 |
endif() |
7114
e0110a1229b7
add NOPNG to cmake to explicitly disable PNG dependency
koda
parents:
7113
diff
changeset
|
176 |
|
7220 | 177 |
#CMAKE_OSX_ARCHITECTURES and CMAKE_OSX_SYSROOT need to be set for universal binary and correct linking |
178 |
if(NOT CMAKE_OSX_ARCHITECTURES) |
|
8279
c03d64969112
less linking needed, raise minimum_osx_version when videorec is enabled
koda
parents:
8272
diff
changeset
|
179 |
if(current_macosx_version VERSION_LESS "10.6") |
7220 | 180 |
if(${CMAKE_SYSTEM_PROCESSOR} MATCHES "powerpc*") |
181 |
set(CMAKE_OSX_ARCHITECTURES "ppc7400") |
|
182 |
else() |
|
183 |
set(CMAKE_OSX_ARCHITECTURES "i386") |
|
184 |
endif() |
|
185 |
else() |
|
186 |
set(CMAKE_OSX_ARCHITECTURES "x86_64") |
|
187 |
endif() |
|
188 |
endif() |
|
5053 | 189 |
|
7220 | 190 |
#CMAKE_OSX_SYSROOT is set at the system version we are supposed to build on |
191 |
#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
|
192 |
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
|
193 |
if(minimum_macosx_version VERSION_EQUAL "10.4") |
7220 | 194 |
set(CMAKE_OSX_SYSROOT "/Developer/SDKs/MacOSX10.4u.sdk/") |
195 |
set(CMAKE_C_COMPILER "gcc-4.0") |
|
196 |
set(CMAKE_CXX_COMPILER "g++-4.0") |
|
197 |
else() |
|
198 |
string(REGEX REPLACE "([0-9]+.[0-9]+).[0-9]+" "\\1" sdk_version ${minimum_macosx_version}) |
|
199 |
set(CMAKE_OSX_SYSROOT "/Developer/SDKs/MacOSX${sdk_version}.sdk/") |
|
200 |
endif() |
|
201 |
endif() |
|
2641 | 202 |
|
7220 | 203 |
#set deployment target |
8775
3cad01db0bae
apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents:
8770
diff
changeset
|
204 |
add_flag_append(CMAKE_Pascal_FLAGS "-k-macosx_version_min -k${minimum_macosx_version} ") |
2015 | 205 |
endif(APPLE) |
206 |
||
2406 | 207 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
208 |
#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
|
209 |
if (CMAKE_BUILD_TYPE) |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
210 |
string (TOUPPER ${CMAKE_BUILD_TYPE} CMAKE_BUILD_TYPE) |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
211 |
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
|
212 |
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
|
213 |
message (STATUS "Unknown build type, using default (${default_build_type})") |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
214 |
endif () |
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
215 |
else (CMAKE_BUILD_TYPE) |
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
216 |
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
|
217 |
endif (CMAKE_BUILD_TYPE) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
218 |
|
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
219 |
|
8781 | 220 |
#set default flags values for all projects (unless MINIMAL_CFLAGS is true) |
221 |
if(NOT ${MINIMAL_CFLAGS}) |
|
8784 | 222 |
add_flag_append(CMAKE_C_FLAGS "-pipe") |
223 |
add_flag_append(CMAKE_C_FLAGS_RELEASE "-w -Os -fomit-frame-pointer") |
|
8821
e85ff6e298b5
adjust verbosity, move debug/release variables in the right section
koda
parents:
8806
diff
changeset
|
224 |
add_flag_append(CMAKE_C_FLAGS_DEBUG "-Wall -O0 -DDEBUG") |
8784 | 225 |
add_flag_append(CMAKE_CXX_FLAGS ${CMAKE_C_FLAGS}) |
226 |
add_flag_append(CMAKE_CXX_FLAGS_RELEASE ${CMAKE_C_FLAGS_RELEASE}) |
|
227 |
add_flag_append(CMAKE_CXX_FLAGS_DEBUG ${CMAKE_C_FLAGS_DEBUG}) |
|
7944 | 228 |
else() |
229 |
#CMake adds a lot of additional configuration flags, so let's clear them up |
|
230 |
set(CMAKE_C_FLAGS_RELEASE "") |
|
231 |
set(CMAKE_C_FLAGS_DEBUG "-Wall -DDEBUG") |
|
232 |
set(CMAKE_CXX_FLAGS_RELEASE "") |
|
233 |
set(CMAKE_CXX_FLAGS_DEBUG "-Wall -DDEBUG") |
|
234 |
endif() |
|
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
235 |
|
8665
3ff8694d9e22
rewritten findfreepascal, moved checkstack code elsewhere
koda
parents:
8659
diff
changeset
|
236 |
#TODO: find out why we need this... |
8669
3f9853888d4f
user correct variable and slimmer test, version typos, .dll.a updated
koda
parents:
8666
diff
changeset
|
237 |
include(CheckCCompilerFlag) |
3f9853888d4f
user correct variable and slimmer test, version typos, .dll.a updated
koda
parents:
8666
diff
changeset
|
238 |
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
|
239 |
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
|
240 |
if(HAVE_NOEXECSTACK) |
8775
3cad01db0bae
apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents:
8770
diff
changeset
|
241 |
add_flag_append(CMAKE_Pascal_FLAGS "-k-z -knoexecstack") |
8781 | 242 |
if(NOT ${MINIMAL_CFLAGS}) |
8784 | 243 |
add_flag_append(CMAKE_C_FLAGS ${CMAKE_REQUIRED_FLAGS}) |
8665
3ff8694d9e22
rewritten findfreepascal, moved checkstack code elsewhere
koda
parents:
8659
diff
changeset
|
244 |
endif() |
3ff8694d9e22
rewritten findfreepascal, moved checkstack code elsewhere
koda
parents:
8659
diff
changeset
|
245 |
endif() |
8669
3f9853888d4f
user correct variable and slimmer test, version typos, .dll.a updated
koda
parents:
8666
diff
changeset
|
246 |
unset(CMAKE_REQUIRED_FLAGS) |
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
247 |
|
7397
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
248 |
#parse additional parameters |
8796 | 249 |
if(FPFLAGS) |
250 |
add_flag_prepend(CMAKE_Pascal_FLAGS ${FPFLAGS}) |
|
251 |
endif() |
|
252 |
if(GHFLAGS) |
|
8611
90f445317e8a
support WARNING message status on cmake 2.6 (bug 524)
koda
parents:
8597
diff
changeset
|
253 |
if(${allow_parse_args}) |
8796 | 254 |
separate_arguments(ghflags_parsed UNIX_COMMAND ${GHFLAGS}) |
255 |
else() |
|
8611
90f445317e8a
support WARNING message status on cmake 2.6 (bug 524)
koda
parents:
8597
diff
changeset
|
256 |
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
|
257 |
endif() |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
258 |
endif() |
833fc211ca2d
allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents:
7264
diff
changeset
|
259 |
|
8775
3cad01db0bae
apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents:
8770
diff
changeset
|
260 |
|
8707 | 261 |
list(APPEND haskell_flags ${ghflags_parsed} # user flags |
262 |
"-O2" # optimise for faster code |
|
8644 | 263 |
) |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
264 |
|
8821
e85ff6e298b5
adjust verbosity, move debug/release variables in the right section
koda
parents:
8806
diff
changeset
|
265 |
#-vm4079,4080,4081 |
e85ff6e298b5
adjust verbosity, move debug/release variables in the right section
koda
parents:
8806
diff
changeset
|
266 |
add_flag_append(CMAKE_Pascal_FLAGS "-Cs2000000") |
e85ff6e298b5
adjust verbosity, move debug/release variables in the right section
koda
parents:
8806
diff
changeset
|
267 |
add_flag_append(CMAKE_Pascal_FLAGS_DEBUG "-O- -gv") |
8802
ed984e06b435
enable fpc inlining only in release mode only if using fpc > 2.6
koda
parents:
8798
diff
changeset
|
268 |
add_flag_append(CMAKE_Pascal_FLAGS_RELEASE "-Os -Xs") |
8614
5f74a047cf2c
drop useless option, automatically set revision and debug info
koda
parents:
8613
diff
changeset
|
269 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
270 |
#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
|
271 |
message(STATUS "Using ${CMAKE_BUILD_TYPE} configuration") |
7709
631852904cee
only accept RELASE and DEBUG build type configuration
koda
parents:
7705
diff
changeset
|
272 |
if(CMAKE_BUILD_TYPE MATCHES "DEBUG") |
8707 | 273 |
list(APPEND haskell_flags "-Wall" # all warnings |
274 |
"-debug" # debug mode |
|
275 |
"-dcore-lint" # internal sanity check |
|
8644 | 276 |
) |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
277 |
else() |
8707 | 278 |
list(APPEND haskell_flags "-w" # no warnings |
8644 | 279 |
) |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
280 |
endif() |
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2573
diff
changeset
|
281 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
282 |
#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
|
283 |
find_package(Lua) |
7233
225179f64fd8
LUA_FOUND should surely be set only if the system lua was found.
nemo
parents:
7226
diff
changeset
|
284 |
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
|
285 |
message(STATUS "Found LUA: ${LUA_DEFAULT}") |
7223 | 286 |
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
|
287 |
message(STATUS "LUA will be provided by the bundled sources") |
7220 | 288 |
add_subdirectory(misc/liblua) |
7031
d5ea24399a48
when Lua is not found, fallback to compiling the one that comes bundled in our sources
koda
parents:
7030
diff
changeset
|
289 |
endif() |
7223 | 290 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
291 |
|
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
|
292 |
#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
|
293 |
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
|
294 |
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
|
295 |
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
|
296 |
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
|
297 |
|
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
|
298 |
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
|
299 |
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
|
300 |
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
|
301 |
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
|
302 |
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
|
303 |
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
|
304 |
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
|
305 |
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
|
306 |
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
|
307 |
|
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
|
308 |
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
|
309 |
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
|
310 |
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
|
311 |
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
|
312 |
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
|
313 |
|
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
|
314 |
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
|
315 |
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
|
316 |
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
|
317 |
else() |
8528 | 318 |
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
|
319 |
set(physfs_output_name "hw_physfs") |
8528 | 320 |
add_subdirectory(misc/libphysfs) |
321 |
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
|
322 |
|
8688 | 323 |
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
|
324 |
|
8671 | 325 |
#physfs helper library |
8528 | 326 |
add_subdirectory(misc/libphyslayer) |
8283 | 327 |
|
8671 | 328 |
#server |
329 |
if(NOT NOSERVER) |
|
330 |
add_subdirectory(gameServer) |
|
331 |
endif() |
|
332 |
||
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
333 |
#main engine |
184 | 334 |
add_subdirectory(hedgewars) |
5053 | 335 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
336 |
#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
|
337 |
if(ANDROID) |
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
338 |
#run cmake -DANDROID=1 to enable this |
7220 | 339 |
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
|
340 |
endif() |
5381
8f95038f3f75
Removed protocol check, using CMake now to setup the building scripts using Templates/* removed old scripts
Xeli
parents:
5223
diff
changeset
|
341 |
|
7705
15f5d3cd35c6
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents:
7704
diff
changeset
|
342 |
#TODO: when ANDROID, BUILD_ENGINE_LIBRARY should be set |
8082
675372256a01
lotsa hackery to get frontend somehow link libengine...
koda
parents:
8078
diff
changeset
|
343 |
if(NOT ANDROID) |
7220 | 344 |
add_subdirectory(bin) |
345 |
add_subdirectory(QTfrontend) |
|
346 |
add_subdirectory(share) |
|
347 |
add_subdirectory(tools) |
|
3515 | 348 |
endif() |
2203
6bd39d75e0dd
-Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents:
2200
diff
changeset
|
349 |
|
584
f381705f1aeb
Some stuff to get good results from make 'package_source'
unc0rr
parents:
546
diff
changeset
|
350 |
|
8698 | 351 |
include(${CMAKE_MODULE_PATH}/CPackConfig.cmake) |
184 | 352 |