forked from juzzlin/DustRacing2D
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
176 lines (135 loc) · 5.16 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
project(DustRacing2D)
cmake_minimum_required(VERSION 2.8.12)
cmake_policy(VERSION 2.8.12)
# Use cmake --help-policy [POLICY] for more information about these:
if(POLICY CMP0005)
cmake_policy(SET CMP0005 NEW)
endif()
if(POLICY CMP0020)
cmake_policy(SET CMP0020 NEW)
endif()
# Default to GLVND
if(POLICY CMP0072)
cmake_policy(SET CMP0072 OLD)
endif()
if(POLICY CMP0043)
cmake_policy(SET CMP0043 NEW)
endif()
# Global game version
set(VERSION_MAJOR 2)
set(VERSION_MINOR 0)
set(VERSION_PATCH 5)
set(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}")
# Some common CPack variables
set(CPACK_PACKAGE_VERSION_MAJOR ${VERSION_MAJOR})
set(CPACK_PACKAGE_VERSION_MINOR ${VERSION_MINOR})
set(CPACK_PACKAGE_VERSION_PATCH ${VERSION_PATCH})
set(CPACK_PACKAGE_NAME dustracing2d)
set(CPACK_PACKAGE_VENDOR Juzzlin)
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "")
set(CPACK_PACKAGE_ICON ${CMAKE_SOURCE_DIR}/data/images/about.png)
set(CPACK_RESOURCE_FILE_LICENSE ${CMAKE_SOURCE_DIR}/COPYING)
set(CPACK_RESOURCE_FILE_README ${CMAKE_SOURCE_DIR}/README.md)
option(ReleaseBuild "This should be used when creating a build with install targets" OFF)
option(VorbisLibsPath "Optional path hint for vorbis libs (libvorbis, libvorbisfile)." "")
option(OggLibPath "Optional path hint for ogg lib (libogg)." "")
option(DATA_PATH "Optional DATA_PATH for Linux release build." "")
option(BIN_PATH "Optional BIN_PATH for Linux release build." "")
option(DOC_PATH "Optional DOC_PATH for Linux release build." "")
option(GLES "Build for OpenGL ES 2.0" OFF)
option(NO_GLEW "Don't use GLEW to resolve OpenGL extensions if enabled." ON)
option(QOpenGLFunctions "Use QOpenGLFunctions to resolve OpenGL extensions if enabled." ON)
option(UnlockAllTracks "Unlock all tracks (for development purposes)" OFF)
# Default to release C++ flags if CMAKE_BUILD_TYPE not set
if( NOT CMAKE_BUILD_TYPE )
set( CMAKE_BUILD_TYPE Release CACHE STRING
"Choose the type of build, options are: None Debug Release RelWithDebInfo
MinSizeRel."
FORCE )
endif()
if(GLES)
add_definitions(-D__MC_GLES__)
message(STATUS "Compiling for OpenGL ES 2.0")
else()
message(STATUS "Compiling for OpenGL 2.1")
endif()
if(NO_GLEW)
add_definitions(-D__MC_NO_GLEW__)
endif()
if(QOpenGLFunctions)
message(STATUS "Using QOpenGLFunctions")
add_definitions(-D__MC_QOPENGLFUNCTIONS__)
add_definitions(-D__MC_NO_GLEW__)
endif()
if (UnlockAllTracks)
message(STATUS "All tracks unlocked")
add_definitions(-DUNLOCK_ALL_TRACKS)
endif()
add_definitions(-DGLEW_STATIC)
add_definitions(-DGLEW_NO_GLU)
if(UNIX)
include("InstallLinux.cmake")
elseif(WIN32)
include("InstallWindows.cmake")
endif()
if(CMAKE_COMPILER_IS_GNUCXX OR MINGW OR ${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang")
add_compile_options("$<$<CONFIG:RELEASE>:-W;-Wall;-O3;-pedantic;-fomit-frame-pointer>")
add_compile_options("$<$<CONFIG:DEBUG>:-W;-Wall;-O0;-pedantic>")
# Automatically use ccache if found
find_program(CCACHE_FOUND ccache)
if(CCACHE_FOUND)
set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache)
set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK ccache)
endif(CCACHE_FOUND)
elseif(MSVC)
add_definitions(-DNOMINMAX)
endif()
set(GAME_BINARY_NAME "dustrac-game")
set(EDITOR_BINARY_NAME "dustrac-editor")
add_definitions(-DVERSION="${VERSION}")
set(CMAKE_AUTOMOC ON)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(QT_MIN_VER 5.4.0)
find_package(Qt5Core ${QT_MIN_VER} REQUIRED)
find_package(Qt5OpenGL ${QT_MIN_VER} REQUIRED)
find_package(Qt5Xml ${QT_MIN_VER} REQUIRED)
find_package(Qt5Widgets ${QT_MIN_VER} REQUIRED)
find_package(Qt5LinguistTools ${QT_MIN_VER} REQUIRED)
find_package(Qt5Sql ${QT_MIN_VER} REQUIRED)
find_package(Qt5Test ${QT_MIN_VER} REQUIRED)
# Find OpenGL
find_package(OpenGL REQUIRED)
if(${CMAKE_VERSION} VERSION_LESS "3.11.0")
set(DUSTRAC_OPENGL_LIBS ${OPENGL_gl_LIBRARY})
else()
set(DUSTRAC_OPENGL_LIBS OpenGL::GL)
endif()
# OpenAL for sounds. OpenAL directory can be given by -DOPENALDIR=...
set(ENV{OPENALDIR} ${OpenALDir})
find_package(OpenAL REQUIRED)
include_directories(${OPENAL_INCLUDE_DIR}/..)
# Vorbis libs for reading Ogg files
if(MSVC)
find_library(VORBISFILE_LIB NAMES libvorbisfile.a libvorbisfile_static.lib HINTS ${VorbisLibsPath} REQUIRED)
find_library(VORBIS_LIB NAMES libvorbis.a libvorbis_static.lib HINTS ${VorbisLibsPath} REQUIRED)
include_directories(${VorbisLibsPath}/include)
find_library(OGG_LIB NAMES libogg.a libogg_static.lib HINTS ${OggLibPath} REQUIRED)
include_directories(${OggLibPath}/include)
message(STATUS "Using static versions of vorbis libs:")
message(STATUS " ${VORBISFILE_LIB}")
message(STATUS " ${VORBIS_LIB}")
message(STATUS " ${OGG_LIB}")
else()
include(FindPkgConfig)
pkg_check_modules(VORBISFILE REQUIRED vorbisfile)
endif()
add_subdirectory(src/contrib/SimpleLogger EXCLUDE_FROM_ALL)
include_directories(src/contrib/SimpleLogger/src)
add_subdirectory(src/contrib/Argengine EXCLUDE_FROM_ALL)
include_directories(src/contrib/Argengine/src)
# Enable CMake's unit test framework
enable_testing()
# Install paths depend on the build type and target platform
resolve_install_paths()
add_subdirectory(src/editor)
add_subdirectory(src/game)