forked from the-butterfly-effect/tbe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
191 lines (172 loc) · 7.28 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
cmake_minimum_required (VERSION 2.8.12)
project (thebutterflyeffect)
option(WITH_DOCS "build package with(out) documentation")
# add the custom cmake scripts
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
if (WIN32 OR APPLE)
# Win and Mac both have a rather flat directory layout.
# At least on Win, the CMAKE_INSTALL_PREFIX is the location inside
# 'build' where all files are copied prior to creating the package.
if (WIN32)
set(TBE_LEVELS_DIR "levels")
set(TBE_IMAGES_DIR "images")
set(TBE_I18N_DIR "i18n")
set(TBE_DOC_DIR "doc")
set(TBE_DESKTOP_DIR "applications")
set(TBE_ICON_DIR "icons")
set(TBE_TARGET_PREFIX "./")
set(TBE_BIN_DIR ".")
set(CMAKE_INSTALL_PREFIX ".")
# endif ()
else (APPLE)
set(TBE_TOPLEVEL_DIR tbe.app/Contents)
set(TBE_RESOURCES_DIR ${TBE_TOPLEVEL_DIR}/Resources)
set(TBE_LEVELS_DIR ${TBE_RESOURCES_DIR}/levels)
set(TBE_IMAGES_DIR ${TBE_RESOURCES_DIR}/images)
set(TBE_I18N_DIR ${TBE_RESOURCES_DIR}/i18n)
set(TBE_DOC_DIR ${TBE_RESOURCES_DIR}/doc)
set(TBE_DESKTOP_DIR ${TBE_RESOURCES_DIR}/applications)
set(TBE_ICON_DIR ${TBE_RESOURCES_DIR}/icons)
set(TBE_TARGET_PREFIX "../../../")
set(TBE_BIN_DIR ${TBE_TOPLEVEL_DIR}/MacOS)
set(CMAKE_INSTALL_PREFIX installprefix)
endif ()
else ()
# i.e. Linux variants
set (CMAKE_INSTALL_PREFIX "/usr")
set(TBE_BIN_DIR games)
set(TBE_LEVELS_DIR share/games/tbe/levels)
set(TBE_IMAGES_DIR share/games/tbe/images)
set(TBE_I18N_DIR share/games/tbe/i18n)
set(TBE_DOC_DIR share/doc/tbe)
set(TBE_DESKTOP_DIR share/applications)
set(TBE_ICON_DIR share/icons)
set(TBE_TARGET_PREFIX "../")
endif ()
configure_file(
${PROJECT_SOURCE_DIR}/src/tbe_paths.h.in
${PROJECT_BINARY_DIR}/tbe_paths.h
)
add_subdirectory(imagery)
add_subdirectory(src)
add_subdirectory(i18n)
# use .. because TBE_LEVELS_DIR already ends in 'levels'
install(DIRECTORY levels
DESTINATION ${TBE_LEVELS_DIR}/..
PATTERN "test" EXCLUDE
)
if (WITH_DOCS)
install(FILES COPYING AUTHORS README.md
DESTINATION ${TBE_DOC_DIR}
)
ENDIF(WITH_DOCS)
SET(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/DESCRIPTION")
SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "The Butterfly Effect is a computer physics puzzle game.")
SET(CPACK_PACKAGE_NAME "the-butterfly-effect.org")
SET(CPACK_PACKAGE_VENDOR "the-butterfly-effect.org")
SET(CPACK_PACKAGE_VERSION_MAJOR "0")
SET(CPACK_PACKAGE_VERSION_MINOR "9.4")
SET(CPACK_PACKAGE_VERSION_PATCH "git")
SET(CPACK_RESOURCE_FILE_README "${CMAKE_CURRENT_SOURCE_DIR}/README.md")
# use rpavlik's cmake scripts to fetch the current git version hash
include(GetGitRevisionDescription)
get_git_head_revision(GIT_REFSPEC GIT_VERSION_HASH)
configure_file(
${PROJECT_SOURCE_DIR}/src/tbe_version.h.in
${PROJECT_BINARY_DIR}/tbe_version.h
)
configure_file(
${PROJECT_SOURCE_DIR}/src/tbe_global.h.in
${PROJECT_BINARY_DIR}/tbe_global.h
)
set(CPACK_SOURCE_GENERATOR TGZ)
set(CPACK_SOURCE_IGNORE_FILES /.git/.gitignore/;*~;/build/;usr)
set(CPACK_SOURCE_STRIP_FILES "")
set(CPACK_STRIP_FILES ON)
IF(WIN32 OR APPLE)
###
### below, you'll find all packaging info specific to Win32 or Apple
###
if (WIN32)
# There is a bug in NSIS that does not handle full unix paths properly. Make
# sure there is at least one set of four (4) backslashes.
SET(CPACK_GENERATOR "NSIS")
SET(CPACK_PACKAGE_INSTALL_DIRECTORY ${CPACK_PACKAGE_NAME})
SET(CPACK_PACKAGE_ICON "${CMAKE_CURRENT_SOURCE_DIR}/imagery/illustrations\\\\installer-top-icon.bmp")
SET(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}\\\\COPYING")
SET(CPACK_RESOURCE_FILE_README "${CMAKE_CURRENT_SOURCE_DIR}\\\\README.md")
SET(CPACK_NSIS_INSTALLED_ICON_NAME "tbe.exe")
SET(CPACK_NSIS_EXECUTABLES_DIRECTORY "${CMAKE_INSTALL_PREFIX}\\\\")
SET(CPACK_NSIS_DISPLAY_NAME "The Butterfly Effect")
SET(CPACK_NSIS_HELP_LINK "http:\\\\\\\\www.the-butterfly-effect.org")
SET(CPACK_NSIS_URL_INFO_ABOUT "http:\\\\\\\\www.the-butterfly-effect.org")
SET(CPACK_NSIS_CONTACT "info@the-butterfly-effect.org")
SET(CPACK_NSIS_MODIFY_PATH OFF)
#SET(CPACK_NSIS_MUI_FINISHPAGE_RUN "tbe.exe")
# Supply the DLL files on Windows - no static linking :-(
# Technically speaking, this is a hack. But who cares?
set(QTMYLIB "C:/Qt/5.5/mingw492_32/bin/")
INSTALL(FILES
${QTMYLIB}/libgcc_s_dw2-1.dll
${QTMYLIB}/libstdc++-6.dll
${QTMYLIB}/libwinpthread-1.dll
${QTMYLIB}/Qt5Core.dll
${QTMYLIB}/Qt5Widgets.dll
${QTMYLIB}/Qt5Gui.dll
${QTMYLIB}/Qt5Svg.dll
${QTMYLIB}/Qt5Xml.dll
${CMAKE_SOURCE_DIR}/src/libintl/libiconv2.dll
${CMAKE_SOURCE_DIR}/src/libintl/libintl3.dll
DESTINATION ${TBE_BIN_DIR}
)
# On Windows, package qt's own qm files for standard strings like yes/non/cancel.
FILE(GLOB qtqmfiles ${QTMYLIB}/../translations/qt_*.qm)
INSTALL(FILES ${qtqmfiles}
DESTINATION ${TBE_I18N_DIR}
)
# Windows also needs qpa file in the bindir/platforms directory
INSTALL(FILES "${QTMYLIB}/../plugins/platforms/qwindows.dll"
DESTINATION "${TBE_BIN_DIR}/platforms/"
)
endif()
if (APPLE)
set_target_properties(tbe PROPERTIES MACOSX_BUNDLE false)
set(CPACK_GENERATOR tgz)
set_source_files_properties(${CMAKE_INSTALL_PREFIX} PROPERTIES MACOSX_PACKAGE_LOCATION Resources)
# set(CPACK_SET_DESTDIR "ON")
install(FILES
${CMAKE_SOURCE_DIR}/installer/macosx/Info.plist
DESTINATION ${TBE_TOPLEVEL_DIR})
install(FILES
${CMAKE_SOURCE_DIR}/installer/macosx/tbe-icon.icns
DESTINATION ${TBE_RESOURCES_DIR})
endif ()
ELSE()
###
### below, you'll find all packaging info specific to Linux.
###
SET(CPACK_PACKAGE_CONTACT "info@the-butterfly-effect.org")
SET(CPACK_STRIP_FILES "tbe")
install(DIRECTORY installer/icons/hicolor DESTINATION ${TBE_ICON_DIR} )
install(FILES installer/tbe.desktop DESTINATION ${TBE_DESKTOP_DIR} )
if("${RPM}")
# DEB and RPM packages
SET(CPACK_GENERATOR "DEB" "RPM")
set(CPACK_PACKAGING_INSTALL_PREFIX "/")
else("${RPM}")
# TGZ and SH packagers
# for UNIX (including Linux), no path included
SET(CPACK_GENERATOR "STGZ" "TGZ")
set(CPACK_PACKAGING_INSTALL_PREFIX "/")
# we use a special License file for the self-extracting archive
# so we can display both license info *and* give a few instructions
SET(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/installer/License")
endif("${RPM}")
set(CPACK_RPM_PACKAGE_REQUIRES "libQt5Core5 >= 5.2.0")
#set(CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA "${CMAKE_CURRENT_SOURCE_DIR}/installer/debian/postinst;${CMAKE_CURRENT_SOURCE_DIR}/installer/debian/prerm;" )
set(CPACK_DEBIAN_PACKAGE_DEPENDS "libqt5-svg (>=5.2), libqtgui5 (>=5.2), libqt5-xml (>=5.2), libqtcore5 (>=5.2)")
set(CPACK_DEBIAN_PACKAGE_SECTION "games")
set(CPACK_SET_DESTDIR "ON")
ENDIF()
SET(CPACK_PACKAGE_EXECUTABLES "tbe" "tbe.exe")
INCLUDE(CPack)