forked from Revolutionary-Games/Thrive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
427 lines (335 loc) · 8.35 KB
/
CMakeLists.txt
File metadata and controls
427 lines (335 loc) · 8.35 KB
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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
# Based on a file from the Ogre Wiki Tutorial Framework
# http://www.ogre3d.org/tikiwiki/
#
# Modified as part of the Thrive project
#-----------------------------------------------------------------------------
cmake_minimum_required(VERSION 2.6)
project(Thrive)
###################
# Cache Variables #
###################
# Ogre SDK
SET(OGRE_SDK ""
CACHE STRING "Path to the Ogre SDK"
)
###############
# CMake Setup #
###############
# Configure search path for cmake modules
list(APPEND CMAKE_MODULE_PATH
${CMAKE_SOURCE_DIR}/cmake_modules
)
# Import utility functions
include(add_to_project)
include(utils)
# Search path for dynamic libraries at runtime. Only relevant for Linux.
set(CMAKE_INSTALL_RPATH ".")
# Assure a proper build type
if (NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE
"Debug"
CACHE STRING "Choose the type of build, options are: None (CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used) Debug Release."
FORCE
)
endif ()
# Install into dist subdirectory
set(CMAKE_INSTALL_PREFIX
"${CMAKE_CURRENT_BINARY_DIR}/dist"
CACHE STRING "Install path" FORCE
)
#############
# Find OGRE #
#############
find_package(OGRE REQUIRED)
# OGRE Plugins used
set(OGRE_PLUGINS
Plugin_BSPSceneManager
Plugin_OctreeSceneManager
Plugin_OctreeZone
Plugin_ParticleFX
Plugin_PCZSceneManager
RenderSystem_GL
)
#######
# OIS #
#######
find_package(OIS REQUIRED QUIET)
##############
# Find Boost #
##############
set(BOOST_COMPONENTS
chrono
date_time
filesystem
thread
system
)
find_package(Boost COMPONENTS ${BOOST_COMPONENTS} REQUIRED QUIET)
###############
# Google Test #
###############
add_subdirectory(
${CMAKE_CURRENT_SOURCE_DIR}/contrib/googletest
)
include_directories(
SYSTEM
${CMAKE_CURRENT_SOURCE_DIR}/contrib/googletest/include
)
##########
# Bullet #
##########
find_package(Bullet REQUIRED QUIET)
include_directories(SYSTEM ${BULLET_INCLUDE_DIRS})
############
# irrKlang #
############
#No longer used
#find_package(irrKlang REQUIRED QUIET)
#include_directories(SYSTEM ${IRRKLANG_INCLUDE_DIRS})
##########
# OpenAL #
##########
find_package(OpenAL REQUIRED QUIET)
include_directories(SYSTEM ${IRRKLANG_INCLUDE_DIR})
#######
# Lua #
#######
include_directories(
SYSTEM
${CMAKE_CURRENT_SOURCE_DIR}/contrib/lua/lua/src
${CMAKE_CURRENT_SOURCE_DIR}/contrib/luabind/
)
if(WIN32)
add_definitions(-DLUA_BUILD_AS_DLL)
endif()
add_subdirectory(
${CMAKE_CURRENT_SOURCE_DIR}/contrib/lua/
)
set(LUA_FOUND TRUE)
set(LUA_INCLUDE_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/contrib/lua/lua/src)
set(LUA_LIBRARIES lua)
#set(BUILD_SHARED_LUABIND ON)
#set(INSTALL_LUABIND ON)
set(LIB_DIR bin)
add_definitions(-DLUABIND_CPLUSPLUS_LUA)
add_subdirectory(
${CMAKE_CURRENT_SOURCE_DIR}/contrib/luabind/
)
######################
# Configure Compiler #
######################
include_directories(SYSTEM
${Boost_INCLUDE_DIRS}
${OIS_INCLUDE_DIRS}
${OGRE_INCLUDE_DIRS}
)
include_directories(
${CMAKE_CURRENT_SOURCE_DIR}/src
)
# Compile using c++11
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++0x")
find_package(Threads)
##################
# Compile Thrive #
##################
# Collect sources from sub directories
add_subdirectory(src)
get_property(SOURCE_FILES GLOBAL PROPERTY SOURCE_FILES)
# Set extensive warning flags
include(compiler_flags)
set_source_files_properties(
${SOURCE_FILES}
PROPERTIES COMPILE_FLAGS ${WARNING_FLAGS}
)
# Compile library
add_library(ThriveLib STATIC ${SOURCE_FILES})
target_link_libraries(ThriveLib
${Boost_LIBRARIES}
${OGRE_LIBRARIES}
${OIS_LIBRARIES}
${CMAKE_THREAD_LIBS_INIT}
${BULLET_DYNAMICS_LIBRARY}
${BULLET_COLLISION_LIBRARY}
${BULLET_MATH_LIBRARY}
${BULLET_SOFTBODY_LIBRARY}
${IRRKLANG_LIBRARIES}
luabind
)
set_target_properties(ThriveLib PROPERTIES
OUTPUT_NAME Thrive
)
# Compile executable
add_executable(Thrive
#WIN32
${CMAKE_CURRENT_SOURCE_DIR}/src/Main.cpp)
target_link_libraries(Thrive ThriveLib)
#################
# Compile tests #
#################
# Collect sources from sub directories
get_property(TEST_SOURCE_FILES GLOBAL PROPERTY TEST_SOURCE_FILES)
set_source_files_properties(
${TEST_SOURCE_FILES}
PROPERTIES COMPILE_FLAGS ${WARNING_FLAGS}
)
add_executable(RunTests ${TEST_SOURCE_FILES})
target_link_libraries(RunTests ThriveLib gtest_main)
#################
# Documentation #
#################
set(DOC_OUTPUT_DIR ${CMAKE_CURRENT_BINARY_DIR}/doc CACHE PATH "Documentation output directory.")
set(DOC_INPUT "${CMAKE_CURRENT_SOURCE_DIR}/src ${CMAKE_CURRENT_SOURCE_DIR}/doc")
set( DOXYGEN_CONFIG_FILE
${CMAKE_CURRENT_SOURCE_DIR}/doc/doxygen.cfg.in
)
find_package(Doxygen)
if(DOXYGEN_FOUND)
configure_file(${DOXYGEN_CONFIG_FILE} ${CMAKE_CURRENT_BINARY_DIR}/doxygen.cfg @ONLY)
add_custom_target(doc
${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/doxygen.cfg
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/doc
COMMENT "Generating API documentation with Doxygen" VERBATIM
SOURCES ${DOXYGEN_CONFIG_FILE}
)
endif()
###########
# Install #
###########
# Executable
install(TARGETS Thrive
RUNTIME DESTINATION bin
LIBRARY DESTINATION bin
)
install(EXPORT lua
DESTINATION bin
)
# OGRE config and media
install(FILES
${CMAKE_SOURCE_DIR}/res/ogre_cfg/resources.cfg
DESTINATION bin
)
install(FILES
${CMAKE_SOURCE_DIR}/res/ogre_cfg/plugins.cfg
DESTINATION bin
CONFIGURATIONS Release
)
install(FILES
${CMAKE_SOURCE_DIR}/res/ogre_cfg/plugins_d.cfg
DESTINATION bin
CONFIGURATIONS Debug
RENAME plugins.cfg
)
install(DIRECTORY ${CMAKE_SOURCE_DIR}/res/models
DESTINATION ./
CONFIGURATIONS Release Debug
)
install(DIRECTORY ${CMAKE_SOURCE_DIR}/res/materials
DESTINATION ./
CONFIGURATIONS Release Debug
)
install(DIRECTORY
${CMAKE_SOURCE_DIR}/res/fonts
DESTINATION ./
CONFIGURATIONS Release Debug
)
install(DIRECTORY
${CMAKE_SOURCE_DIR}/res/scripts
DESTINATION ./
CONFIGURATIONS Release Debug
)
# Install Runtime Libraries
if(WIN32)
if (SYSTEM_DLLS)
INSTALL(FILES
${SYSTEM_DLLS}
DESTINATION bin
)
endif()
INSTALL(FILES
${Boost_LIBRARIES}
DESTINATION bin
)
# INSTALL(FILES
# ${IRRKLANG_LIBRARIES_DLL}
# DESTINATION bin
# )
foreach(OGRE_PLUGIN ${OGRE_PLUGINS})
# Release
install(FILES
${OGRE_PLUGIN_DIR_REL}/${OGRE_PLUGIN}.dll
DESTINATION bin/plugins
CONFIGURATIONS Release
)
# Debug
install(FILES
${OGRE_PLUGIN_DIR_DBG}/${OGRE_PLUGIN}_d.dll
DESTINATION bin/plugins
CONFIGURATIONS Debug
)
endforeach()
install(FILES
${OGRE_PLUGIN_DIR_REL}/OgreMain.dll
${OGRE_PLUGIN_DIR_REL}/RenderSystem_GL.dll
${OGRE_PLUGIN_DIR_REL}/OIS.dll
#${OGRE_PLUGIN_DIR_REL}/cg.dll
DESTINATION bin
CONFIGURATIONS Release
)
install(FILES
${OGRE_PLUGIN_DIR_DBG}/OgreMain_d.dll
${OGRE_PLUGIN_DIR_DBG}/RenderSystem_GL_d.dll
${OGRE_PLUGIN_DIR_DBG}/OIS_d.dll
#${OGRE_PLUGIN_DIR_DBG}/cg.dll
DESTINATION bin
CONFIGURATIONS Debug
)
elseif(UNIX)
SeparateLibrariesByBuildType(
"${OGRE_LIBRARIES}"
OGRE_MAIN_DBG
OGRE_MAIN_REL
)
InstallFollowingSymlink(
${OGRE_MAIN_REL}
bin
Release
False
)
InstallFollowingSymlink(
${OGRE_MAIN_DBG}
bin
Debug
False
)
foreach(OGRE_PLUGIN ${OGRE_PLUGINS})
SeparateLibrariesByBuildType(
"${OGRE_${OGRE_PLUGIN}_LIBRARIES}"
OGRE_PLUGIN_LIB_DBG
OGRE_PLUGIN_LIB_REL
)
# Release
InstallFollowingSymlink(
${OGRE_PLUGIN_LIB_REL}
bin/plugins
Release
True
)
# Debug
InstallFollowingSymlink(
${OGRE_PLUGIN_LIB_DBG}
bin/plugins
Debug
True
)
endforeach()
endif()
###############################################################################
# CPack
###############################################################################
configure_file(${CMAKE_SOURCE_DIR}/cpack/zip.cmake.in
"${CMAKE_CURRENT_BINARY_DIR}/cpack/zip.cmake" @ONLY
)
add_custom_target(zip
COMMAND cpack --config "${CMAKE_CURRENT_BINARY_DIR}/cpack/zip.cmake"
DEPENDS Thrive
)