forked from etlegacy/etlegacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
216 lines (173 loc) · 8.26 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
#------------------------------------------------------------------------
# ET: Legacy, http://www.etlegacy.com
# - Wolfenstein: Enemy Territory 2.60b compatible client/server
# - based on raedwulf-et: https://bitbucket.org/tcmreastwood/raedwulf-et
#
# Please use TABs to indent! (x4)
#------------------------------------------------------------------------
cmake_minimum_required(VERSION 3.10.3 FATAL_ERROR)
project(ETLEGACY C CXX)
if(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.21")
cmake_policy(SET CMP0121 NEW)
endif()
if(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.22")
cmake_policy(SET CMP0127 NEW)
endif()
if(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.24")
cmake_policy(SET CMP0135 NEW)
endif()
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake")
include(GetGitRevisionDescription)
include(CMakeDependentOption)
include(cmake/ETLBanner.cmake)
print_header()
# We need to add the macros & Functions before any other includes
include(cmake/ETLFunctions.cmake)
#-----------------------------------------------------------------
# General
#-----------------------------------------------------------------
set(MODNAME "legacy" CACHE STRING "Default mod name")
set(MODURL "www.etlegacy.com" CACHE STRING "Default mod URL")
#-----------------------------------------------------------------
# Options
#-----------------------------------------------------------------
option(BUILD_SERVER "Build the dedicated server executable" ON)
option(BUILD_CLIENT "Build the client executable" ON)
option(BUILD_MOD "Build the mod libraries" ON)
option(BUILD_MOD_PK3 "Pack the mod libraries and game scripts into mod pk3" ON)
option(BUNDLED_LIBS "Use all available bundled libraries instead of system libs" ON)
option(BUNDLED_LIBS_DEFAULT "Default value for bundled libs" ON)
LEG_BUNDLE(SDL SDL)
LEG_BUNDLE(ZLIB Zlib)
LEG_BUNDLE(MINIZIP Minizip)
LEG_BUNDLE(JPEG JPEG)
LEG_BUNDLE(PNG libpng)
LEG_BUNDLE(CURL Curl "NOT APPLE")
LEG_BUNDLE(OPENSSL OpenSSL "NOT WIN32 AND NOT APPLE")
LEG_BUNDLE(WOLFSSL WolfSSL "NOT BUNDLED_OPENSSL AND NOT WIN32 AND NOT APPLE")
LEG_BUNDLE(LUA Lua)
LEG_BUNDLE(OGG_VORBIS OGG)
LEG_BUNDLE(THEORA Theora)
LEG_BUNDLE(OPENAL OpenAL "NOT APPLE")
LEG_BUNDLE(OPENAL_INCLUDE OpenAL-OSX "APPLE")
LEG_BUNDLE(GLEW Glew)
LEG_BUNDLE(FREETYPE Freetype2)
LEG_BUNDLE(SQLITE3 SQlite3)
LEG_BUNDLE(CJSON cJSON)
# no support for 32 bit binaries on OpenBSD/amd64 or Apple OSX anymore
cmake_dependent_option(CROSS_COMPILE32 "Compile 32-bit version of ET:L (64bit is incompatible with 2.60b)" ON "NOT APPLE AND NOT CMAKE_SYSTEM MATCHES OpenBSD*" OFF)
# Optional features
option(FEATURE_CURL "Enable auto-download support using cURL (client)" ON)
option(FEATURE_SSL "Build SSL for curl and authentication" ON)
option(FEATURE_OGG_VORBIS "Enable OGG Vorbis support (client)" ON)
option(FEATURE_THEORA "Enable Theora video support (client)" ON)
option(FEATURE_OPENAL "Enable OpenAL sound backend (client)" ON)
option(FEATURE_FREETYPE "Enable Freetype font library support (client)" ON)
option(FEATURE_PNG "Enable PNG screenshot support (client)" ON)
option(FEATURE_LUA "Enable Lua support (mod)" ON)
option(FEATURE_MULTIVIEW "Enable multiview support (mod)" ON)
option(FEATURE_EDV "Enable extended demo viewer support (mod)" ON)
option(FEATURE_ANTICHEAT "Enable server side anti-wallhack code (server)" ON)
option(FEATURE_AUTOUPDATE "Enable updater which downloads latest ET:L files" ON)
option(FEATURE_RENDERER2 "Build and use the new renderer" OFF)
option(FEATURE_RENDERER_GLES "Build and use OpenGL ES renderer" OFF)
option(FEATURE_IPV6 "Enable IPv6 networking code" ON)
option(FEATURE_IRC_CLIENT "Enable IRC client client side" ON)
option(FEATURE_IRC_SERVER "Enable IRC client server side" ON)
option(RENDERER_DYNAMIC "Build renderer into a dynamic library" ON)
option(FEATURE_WINDOWS_CONSOLE "Build win32 executables with Windows console" ON)
option(FEATURE_GETTEXT "Enable localization using tinygettext" ON)
option(FEATURE_SERVERMDX "Enable MDX support on server side (mod)" ON)
option(FEATURE_DBMS "Enable dbms support (sqlite3)" ON)
option(FEATURE_PAKISOLATION "Enable custom pak isolation" ON)
option(FORCE_DEBUG "Force enable legacy debug macros" OFF)
option(ENABLE_ASAN "Enable AddressSanitizer on clang" OFF)
option(ENABLE_MULTI_BUILD "Enable binary names to include arch" ON)
# TODO: implement this field on the libs as well
option(FORCE_STATIC_VCRT "Force static MSVC runtime linking" ON)
option(ENABLE_SSE "Enable Streaming SIMD Extensions" OFF)
cmake_dependent_option(FEATURE_LUASQL "Enable LuaSQL sqlite3 backend (mod)" ON "FEATURE_LUA" OFF)
cmake_dependent_option(FEATURE_RATING "Enable skill rating support (mod)" ON "FEATURE_DBMS" OFF)
cmake_dependent_option(FEATURE_PRESTIGE "Enable prestige support (mod)" ON "FEATURE_DBMS" OFF)
cmake_dependent_option(FEATURE_OMNIBOT "Enable Omni-bot support (mod)" ON "( NOT MINGW AND WIN32 ) OR FORCE_OMNIBOT OR CMAKE_SYSTEM_NAME MATCHES Linux" OFF)
option(INSTALL_EXTRA "Install extra add-ons (omni-bot, geoip, wolfadmin)." ON)
cmake_dependent_option(INSTALL_OMNIBOT "Install Omni-bot" ON "FEATURE_OMNIBOT AND INSTALL_EXTRA" OFF)
cmake_dependent_option(INSTALL_GEOIP "Install GeoLite geolocation database" ON "INSTALL_EXTRA" OFF)
cmake_dependent_option(INSTALL_WOLFADMIN "Install WolfAdmin enhancement suite" ON "INSTALL_EXTRA" OFF)
option(ARM "Build ARM version" OFF)
option(CLIENT_GLVND "Link against GLVND OpenGL libraries" OFF)
set(ET_FS_BASEPATH "" CACHE STRING "Copy required genuine ET files from ET_FS_BASEPATH")
cmake_dependent_option(ET_KEY "Copy existing etkey file from ET_FS_BASEPATH)" ON "ET_FS_BASEPATH" OFF)
#-----------------------------------------------------------------
# Setup
#-----------------------------------------------------------------
if (BUNDLED_OPENSSL AND BUNDLED_WOLFSSL)
message(FATAL_ERROR "Cannot enable both OpenSSL and WolfSSL at the same time.")
endif()
# Group the VisualStudio projects
set(CMAKE_TARGETS_FOLDER CMake)
set(BUNDLED_TARGETS_FOLDER Bundled)
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
set_property(GLOBAL PROPERTY PREDEFINED_TARGETS_FOLDER ${CMAKE_TARGETS_FOLDER})
# Set language levels
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_C_STANDARD 99)
# Find and setup programs the build needs
include(cmake/ETLPrograms.cmake)
# Setup some basic helper variables
include(cmake/ETLCommon.cmake)
# Dummy targets for library binding
include(cmake/ETLTargets.cmake)
# Platform specific compiler settings
include(cmake/ETLPlatform.cmake)
# Source globs
include(cmake/ETLSources.cmake)
# Git version header generation
include(cmake/ETLVersion.cmake)
# Use bundled libraries
if(BUNDLED_LIBS)
include(cmake/ETLBundledLibs.cmake)
endif(BUNDLED_LIBS)
# Set up includes and libraries based on feature options
include(cmake/ETLSetupFeatures.cmake)
# Group the sources (only msvc and xcode now)
include(cmake/ETLSourceGroup.cmake)
#-----------------------------------------------------------------
# Build
#-----------------------------------------------------------------
if(BUILD_CLIENT)
include(cmake/ETLBuildRenderer.cmake)
include(cmake/ETLBuildClient.cmake)
#Since CMake 3.6 you are able to set the Visual Studio startup project
if(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.6")
set_property(DIRECTORY PROPERTY VS_STARTUP_PROJECT "etl")
endif()
endif(BUILD_CLIENT)
if(BUILD_SERVER)
include(cmake/ETLBuildServer.cmake)
endif(BUILD_SERVER)
if(BUILD_MOD)
include(cmake/ETLBuildMod.cmake)
endif(BUILD_MOD)
#-----------------------------------------------------------------
# Post build
#-----------------------------------------------------------------
# Install third-party add-ons
if(BUILD_MOD AND INSTALL_EXTRA)
if(INSTALL_OMNIBOT)
include(cmake/ETLInstallOmniBot.cmake)
endif(INSTALL_OMNIBOT)
if(INSTALL_GEOIP)
include(cmake/ETLInstallGeoIP.cmake)
endif(INSTALL_GEOIP)
if(INSTALL_WOLFADMIN)
include(cmake/ETLInstallWolfAdmin.cmake)
endif(INSTALL_WOLFADMIN)
endif(BUILD_MOD AND INSTALL_EXTRA)
# Generate install and uninstall packs
if(NOT ANDROID)
include(cmake/ETLInstall.cmake)
# Packaging support
include(cmake/ETLCPack.cmake)
set_target_properties(uninstall PROPERTIES FOLDER ${CMAKE_TARGETS_FOLDER})
endif()