3 cmake_minimum_required(VERSION 3.0)
4 cmake_policy(SET CMP0004 OLD)
7 include(GNUInstallDirs)
12 set(SRCDIR "${CMAKE_CURRENT_SOURCE_DIR}/Source")
14 if(UNIX AND NOT APPLE)
21 # Version for the current (stable) or next (development) release
22 set(LUGARU_VERSION_MAJOR 1)
23 set(LUGARU_VERSION_MINOR 2)
24 set(LUGARU_VERSION_PATCH 0)
26 # MAJOR.MINOR, or MAJOR.MINOR.PATCH if PATCH != 0
27 set(LUGARU_VERSION_NUMBER "${LUGARU_VERSION_MAJOR}.${LUGARU_VERSION_MINOR}")
28 if(LUGARU_VERSION_PATCH)
29 set(LUGARU_VERSION_NUMBER "${LUGARU_VERSION_NUMBER}.${LUGARU_VERSION_PATCH}")
32 # Set to "" for stable (tagged) builds, "-dev" for dev builds
33 set(LUGARU_VERSION_SUFFIX "-dev") # development
34 #set(LUGARU_VERSION_SUFFIX "") # stable
36 # Set to 7-char git commit hash if available, otherwise "".
37 # On stable (tagged) builds, this is ignored.
38 set(LUGARU_VERSION_HASH "")
39 if(LUGARU_VERSION_SUFFIX STREQUAL "-dev" AND EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/.git)
43 COMMAND ${GIT_EXECUTABLE} rev-parse --short HEAD
44 WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
45 OUTPUT_VARIABLE "LUGARU_VERSION_HASH"
47 OUTPUT_STRIP_TRAILING_WHITESPACE)
48 message(STATUS "Git commit hash: ${LUGARU_VERSION_HASH}")
52 set(LUGARU_VERSION_RELEASE "" CACHE STRING "Optional release string, e.g. for distro packages release number")
54 # Final string built from the above constants, following the scheme:
55 # MAJOR.MINOR[.PATCH][-dev] [(git HASH)] [[RELEASE]]
56 set(LUGARU_VERSION_STRING "${LUGARU_VERSION_NUMBER}${LUGARU_VERSION_SUFFIX}")
57 if(NOT LUGARU_VERSION_HASH STREQUAL "")
58 set(LUGARU_VERSION_STRING "${LUGARU_VERSION_STRING} (git ${LUGARU_VERSION_HASH})")
60 if(NOT LUGARU_VERSION_RELEASE STREQUAL "")
61 set(LUGARU_VERSION_STRING "${LUGARU_VERSION_STRING} [${LUGARU_VERSION_RELEASE}]")
64 message(STATUS "Version string: ${LUGARU_VERSION_STRING}")
65 configure_file(${SRCDIR}/Version.hpp.in ${SRCDIR}/Version.hpp ESCAPE_QUOTES @ONLY)
70 if(NOT CMAKE_BUILD_TYPE)
71 set(CMAKE_BUILD_TYPE RelWithDebInfo)
72 endif(NOT CMAKE_BUILD_TYPE)
73 message(STATUS "CMake build type: ${CMAKE_BUILD_TYPE}")
75 set(CMAKE_CXX_FLAGS "-Wall -Wextra -Wno-parentheses -pedantic --std=gnu++11 ${CMAKE_CXX_FLAGS}")
78 set(CMAKE_OSX_ARCHITECTURES "x86_64" CACHE STRING "Build architectures for OSX")
79 set(CMAKE_OSX_DEPLOYMENT_TARGET "10.11" CACHE STRING
80 "Minimum OS X version to target for deployment (at runtime); newer APIs weak linked. Set to empty string for default value")
81 set(CMAKE_OSX_SYSROOT "/Developer/SDKs/MacOSX10.11.sdk" CACHE PATH
82 "The product will be built against the headers and libraries located inside the indicated SDK.")
86 option(SYSTEM_INSTALL "Enable system-wide installation, with hardcoded data directory defined with CMAKE_INSTALL_DATADIR" OFF)
89 set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/CMake/Modules/")
96 ${SRCDIR}/Animation/Animation.cpp
97 ${SRCDIR}/Animation/Joint.cpp
98 ${SRCDIR}/Animation/Muscle.cpp
99 ${SRCDIR}/Animation/Skeleton.cpp
100 ${SRCDIR}/Audio/openal_wrapper.cpp
101 ${SRCDIR}/Audio/Sounds.cpp
102 ${SRCDIR}/Devtools/ConsoleCmds.cpp
103 ${SRCDIR}/Environment/Lights.cpp
104 ${SRCDIR}/Environment/Skybox.cpp
105 ${SRCDIR}/Environment/Terrain.cpp
106 ${SRCDIR}/Graphic/Decal.cpp
107 ${SRCDIR}/Graphic/Models.cpp
108 ${SRCDIR}/Graphic/Sprite.cpp
109 ${SRCDIR}/Graphic/Stereo.cpp
110 ${SRCDIR}/Graphic/Text.cpp
111 ${SRCDIR}/Graphic/Texture.cpp
112 ${SRCDIR}/Level/Awards.cpp
113 ${SRCDIR}/Level/Campaign.cpp
114 ${SRCDIR}/Level/Dialog.cpp
115 ${SRCDIR}/Level/Hotspot.cpp
116 ${SRCDIR}/Math/Frustum.cpp
117 ${SRCDIR}/Math/XYZ.cpp
118 ${SRCDIR}/Menu/Menu.cpp
119 ${SRCDIR}/Objects/Object.cpp
120 ${SRCDIR}/Objects/Person.cpp
121 ${SRCDIR}/Objects/PersonType.cpp
122 ${SRCDIR}/Objects/Weapons.cpp
123 ${SRCDIR}/Platform/PlatformUnix.cpp
124 ${SRCDIR}/Platform/PlatformWindows.cpp
125 ${SRCDIR}/User/Account.cpp
126 ${SRCDIR}/User/Settings.cpp
127 ${SRCDIR}/Utils/Folders.cpp
128 ${SRCDIR}/Utils/ImageIO.cpp
129 ${SRCDIR}/Utils/Input.cpp
130 ${SRCDIR}/Utils/pack.c
131 ${SRCDIR}/Utils/private.c
132 ${SRCDIR}/Utils/unpack.c
134 ${SRCDIR}/GameDraw.cpp
135 ${SRCDIR}/GameInitDispose.cpp
136 ${SRCDIR}/GameTick.cpp
137 ${SRCDIR}/Globals.cpp
138 ${SRCDIR}/Tutorial.cpp
143 ${SRCDIR}/Animation/Animation.hpp
144 ${SRCDIR}/Animation/Joint.hpp
145 ${SRCDIR}/Animation/Muscle.hpp
146 ${SRCDIR}/Animation/Skeleton.hpp
147 ${SRCDIR}/Audio/openal_wrapper.hpp
148 ${SRCDIR}/Audio/Sounds.hpp
149 ${SRCDIR}/Devtools/ConsoleCmds.hpp
150 ${SRCDIR}/Environment/Lights.hpp
151 ${SRCDIR}/Environment/Skybox.hpp
152 ${SRCDIR}/Environment/Terrain.hpp
153 ${SRCDIR}/Graphic/Decal.hpp
154 ${SRCDIR}/Graphic/gamegl.hpp
155 ${SRCDIR}/Graphic/Models.hpp
156 ${SRCDIR}/Graphic/Sprite.hpp
157 ${SRCDIR}/Graphic/Stereo.hpp
158 ${SRCDIR}/Graphic/Text.hpp
159 ${SRCDIR}/Graphic/Texture.hpp
160 ${SRCDIR}/Level/Campaign.hpp
161 ${SRCDIR}/Level/Dialog.hpp
162 ${SRCDIR}/Level/Hotspot.hpp
163 ${SRCDIR}/Math/Frustum.hpp
164 ${SRCDIR}/Math/XYZ.hpp
165 ${SRCDIR}/Math/Random.hpp
166 ${SRCDIR}/Menu/Menu.hpp
167 ${SRCDIR}/Objects/Object.hpp
168 ${SRCDIR}/Objects/Person.hpp
169 ${SRCDIR}/Objects/PersonType.hpp
170 ${SRCDIR}/Objects/Weapons.hpp
171 ${SRCDIR}/Platform/Platform.hpp
172 ${SRCDIR}/Thirdparty/optionparser.h
173 ${SRCDIR}/User/Account.hpp
174 ${SRCDIR}/User/Settings.hpp
175 ${SRCDIR}/Utils/binio.h
176 ${SRCDIR}/Utils/Folders.hpp
177 ${SRCDIR}/Utils/ImageIO.hpp
178 ${SRCDIR}/Utils/Input.hpp
179 ${SRCDIR}/Utils/private.h
181 ${SRCDIR}/Tutorial.hpp
187 add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/Lugaru.res
188 COMMAND ${CMAKE_RC_COMPILER}
189 -o ${CMAKE_CURRENT_BINARY_DIR}/Lugaru.res
190 -i${SRCDIR}/Lugaru.rc
191 DEPENDS ${SRCDIR}/Lugaru.rc
193 set(LUGARU_OBJS "Lugaru.res")
197 set(PLATFORM_LIBS "-framework Carbon -framework Cocoa -framework OpenGL -framework OpenAL")
203 find_package(OpenGL REQUIRED)
205 # Windows is funky about OpenAL detection
207 pkg_check_modules(OPENAL openal REQUIRED)
208 set(OPENAL_LIBRARY ${OPENAL_LIBRARIES})
210 find_package(OpenAL REQUIRED)
213 # macOS has problems with using pkgconfig to find SDL2
215 find_package(sdl2 REQUIRED)
217 pkg_check_modules(SDL2 sdl2 REQUIRED)
220 find_package(PNG REQUIRED)
221 find_package(JPEG REQUIRED)
222 find_package(ZLIB REQUIRED)
223 find_package(OggVorbis REQUIRED)
226 ${OPENAL_INCLUDE_DIR}
230 ${OPENGL_INCLUDE_DIR}
232 ${VORBISFILE_INCLUDE_DIR}
234 ${CMAKE_SOURCE_DIR}/Source
237 set(LUGARU_LIBS ${OPENAL_LIBRARY} ${PNG_LIBRARY} ${JPEG_LIBRARY} ${ZLIB_LIBRARIES} ${SDL2_LIBRARIES} ${OPENGL_LIBRARIES} ${VORBISFILE_LIBRARY} ${OGG_LIBRARY} ${PLATFORM_LIBS})
242 add_executable(lugaru ${LUGARU_SRCS} ${LUGARU_H} ${LUGARU_OBJS})
243 target_link_libraries(lugaru ${LUGARU_LIBS})
246 add_definitions(-DBinIO_STDINT_HEADER=<stdint.h>)
248 # An alternative would be to use _WIN32 consistently instead of WIN32
249 add_definitions(-DWIN32)
252 add_definitions(-DPLATFORM_LINUX=1 -DPLATFORM_UNIX=1 -DBinIO_STDINT_HEADER=<stdint.h>)
258 if(NOT CMAKE_INSTALL_PREFIX AND WIN32)
259 set(CMAKE_INSTALL_PREFIX "C:/Lugaru")
260 endif(NOT CMAKE_INSTALL_PREFIX AND WIN32)
262 # OS-specific installation paths
264 set(LUGARU_DOCDIR ${CMAKE_INSTALL_PREFIX})
269 set(LUGARU_APP_ROOT ${CMAKE_INSTALL_PREFIX}/Lugaru.app)
270 set(LUGARU_BINDIR ${LUGARU_APP_ROOT}/Contents/MacOS)
271 set(LUGARU_RESDIR ${LUGARU_APP_ROOT}/Contents/Resources)
274 # Actual installation instructions
277 install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/lugaru.exe DESTINATION ${CMAKE_INSTALL_PREFIX})
278 install(DIRECTORY ${CMAKE_SOURCE_DIR}/Data DESTINATION ${CMAKE_INSTALL_PREFIX})
280 # Based off Mageia/Fedora MinGW toolchain, might not work on other distros or Windows
281 set(LIBGCC_S libgcc_s_sjlj-1.dll)
282 if(CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64") # MinGW64
283 set(LIBGCC_S libgcc_s_seh-1.dll)
284 endif(CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64")
285 # FIXME: Filter out unneeded DLLs when building against some internal deps
286 set(DLL_ROOT ${CMAKE_FIND_ROOT_PATH}/bin)
287 install(FILES ${DLL_ROOT}/${LIBGCC_S}
288 ${DLL_ROOT}/libjpeg-62.dll
289 ${DLL_ROOT}/libogg-0.dll
290 ${DLL_ROOT}/libpng16-16.dll
291 ${DLL_ROOT}/libstdc++-6.dll
292 ${DLL_ROOT}/libvorbis-0.dll
293 ${DLL_ROOT}/libvorbisfile-3.dll
294 ${DLL_ROOT}/libwinpthread-1.dll
295 ${DLL_ROOT}/OpenAL32.dll
297 ${DLL_ROOT}/zlib1.dll
298 DESTINATION ${CMAKE_INSTALL_PREFIX})
304 add_definitions(-DDATA_DIR="${CMAKE_INSTALL_FULL_DATADIR}/${PROJECT_NAME}")
305 set(LUGARU_DOCDIR ${CMAKE_INSTALL_DOCDIR})
306 install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/lugaru DESTINATION ${CMAKE_INSTALL_BINDIR})
307 # Trailing '/' is significant, it installs and _renames_ Data/ as the destination folder
308 install(DIRECTORY ${CMAKE_SOURCE_DIR}/Data/ DESTINATION ${CMAKE_INSTALL_DATADIR}/${PROJECT_NAME})
309 install(FILES ${CMAKE_SOURCE_DIR}/Dist/Linux/lugaru.appdata.xml DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/appdata)
310 install(FILES ${CMAKE_SOURCE_DIR}/Dist/Linux/lugaru.desktop DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/applications)
311 install(FILES ${CMAKE_SOURCE_DIR}/Dist/Linux/lugaru.png DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/128x128/apps)
312 install(FILES ${CMAKE_SOURCE_DIR}/Dist/Linux/lugaru.6 DESTINATION ${CMAKE_INSTALL_MANDIR}/man6)
314 message("You are building Lugaru without having enabled the SYSTEM_INSTALL option. It will default to looking for the data in the 'Data' directory next to the binary.")
315 install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/lugaru DESTINATION ${CMAKE_INSTALL_PREFIX})
316 install(DIRECTORY ${CMAKE_SOURCE_DIR}/Data DESTINATION ${CMAKE_INSTALL_PREFIX})
317 endif(SYSTEM_INSTALL)
321 install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/lugaru DESTINATION ${LUGARU_BINDIR})
322 install(DIRECTORY ${CMAKE_SOURCE_DIR}/Data DESTINATION ${LUGARU_APP_ROOT})
323 install(FILES ${CMAKE_SOURCE_DIR}/Dist/OSX/Lugaru.icns DESTINATION ${LUGARU_RESDIR})
324 install(FILES ${CMAKE_SOURCE_DIR}/Dist/OSX/Info.plist DESTINATION ${LUGARU_APP_ROOT}/Contents)
329 install(FILES ${CMAKE_SOURCE_DIR}/AUTHORS
330 ${CMAKE_SOURCE_DIR}/CONTENT-LICENSE.txt
331 ${CMAKE_SOURCE_DIR}/COPYING.txt
332 ${CMAKE_SOURCE_DIR}/README.md
333 ${CMAKE_SOURCE_DIR}/RELEASE-NOTES.md
334 ${CMAKE_SOURCE_DIR}/Docs/DEVTOOLS.txt
335 ${CMAKE_SOURCE_DIR}/Docs/README.Empire.txt
336 ${CMAKE_SOURCE_DIR}/Docs/README.SevenTasks.txt
337 ${CMAKE_SOURCE_DIR}/Docs/README.Temple.txt
338 DESTINATION ${LUGARU_DOCDIR})