forked from godot-jolt/godot-jolt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
381 lines (326 loc) · 13.4 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
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
cmake_minimum_required(VERSION 3.22 FATAL_ERROR)
set(bin_dir ${CMAKE_CURRENT_LIST_DIR}/bin)
set(source_dir ${CMAKE_CURRENT_LIST_DIR}/src)
set(cmake_dir ${CMAKE_CURRENT_LIST_DIR}/cmake)
set(templates_dir ${cmake_dir}/templates)
list(APPEND CMAKE_MODULE_PATH ${cmake_dir})
include(GodotJoltPrelude)
include(GodotJoltVersionInfo)
project(godot-jolt VERSION ${GDJ_VERSION} LANGUAGES CXX)
include(GodotJoltSetup)
include(GodotJoltExternalGodotCpp)
include(GodotJoltExternalJolt)
include(GodotJoltExternalMimalloc)
gdj_get_build_id(PROJECT_VERSION_BUILD)
set(PROJECT_TITLE ${GDJ_PROJECT_TITLE})
set(PROJECT_DESCRIPTION ${GDJ_PROJECT_DESCRIPTION})
set(PROJECT_COPYRIGHT ${GDJ_PROJECT_COPYRIGHT})
set(PROJECT_BUNDLE_IDENTIFIER ${GDJ_BUNDLE_IDENTIFIER})
set(PROJECT_ENTRY_POINT ${GDJ_ENTRY_POINT})
set(PROJECT_VERSION_STATUS ${GDJ_VERSION_STATUS})
set(PROJECT_VERSION_WITH_STATUS ${PROJECT_VERSION}-${PROJECT_VERSION_STATUS})
set(PROJECT_VERSION_WITH_BUILD ${PROJECT_VERSION_WITH_STATUS}+${PROJECT_VERSION_BUILD})
file(GLOB_RECURSE sources CONFIGURE_DEPENDS ${source_dir}/*.cpp)
file(GLOB_RECURSE headers CONFIGURE_DEPENDS ${source_dir}/*.hpp)
set(pch_file ${source_dir}/precompiled.hpp)
if(CMAKE_SYSTEM_NAME STREQUAL Windows)
gdj_generate_rc_file(rc_file)
list(APPEND sources ${rc_file})
elseif(CMAKE_SYSTEM_NAME STREQUAL Linux)
gdj_generate_info_file(info_file)
list(APPEND sources ${info_file})
endif()
add_library(godot-jolt SHARED ${sources} ${headers})
add_library(godot-jolt::godot-jolt ALIAS godot-jolt)
target_link_libraries(godot-jolt
godot-jolt::godot-cpp
godot-jolt::jolt
)
if(GDJ_USE_MIMALLOC)
target_link_libraries(godot-jolt godot-jolt::mimalloc)
endif()
set(is_windows $<STREQUAL:${CMAKE_SYSTEM_NAME},Windows>)
set(is_linux $<STREQUAL:${CMAKE_SYSTEM_NAME},Linux>)
set(is_macos $<STREQUAL:${CMAKE_SYSTEM_NAME},Darwin>)
set(is_ios $<STREQUAL:${CMAKE_SYSTEM_NAME},iOS>)
set(is_android $<STREQUAL:${CMAKE_SYSTEM_NAME},Android>)
set(is_editor_config $<CONFIG:EditorDebug,EditorDevelopment,EditorDistribution>)
set(is_debug_config $<CONFIG:Debug,EditorDebug>)
set(is_development_config $<CONFIG:Development,EditorDevelopment>)
set(is_distribution_config $<CONFIG:Distribution,EditorDistribution>)
set(is_optimized_config $<OR:${is_development_config},${is_distribution_config}>)
set(use_mimalloc $<BOOL:${GDJ_USE_MIMALLOC}>)
set(prefix $<${is_android}:lib>)
if(CMAKE_SYSTEM_NAME STREQUAL Windows)
set(suffix_platform _windows)
elseif(CMAKE_SYSTEM_NAME STREQUAL Linux)
set(suffix_platform _linux)
elseif(CMAKE_SYSTEM_NAME STREQUAL Darwin)
set(suffix_platform _macos)
elseif(CMAKE_SYSTEM_NAME STREQUAL iOS)
set(suffix_platform _ios)
elseif(CMAKE_SYSTEM_NAME STREQUAL Android)
set(suffix_platform _android)
else()
message(FATAL_ERROR "Unhandled system name: '${CMAKE_SYSTEM_NAME}'.")
endif()
if(APPLE)
set(suffix_arch "")
elseif(GDJ_TARGET_ARCHITECTURES STREQUAL x86)
set(suffix_arch -x86)
elseif(GDJ_TARGET_ARCHITECTURES STREQUAL x64)
set(suffix_arch -x64)
elseif(GDJ_TARGET_ARCHITECTURES STREQUAL arm64)
set(suffix_arch -arm64)
elseif(GDJ_TARGET_ARCHITECTURES STREQUAL arm32)
set(suffix_arch -arm32)
else()
message(FATAL_ERROR "Unhandled architecture: '${GDJ_TARGET_ARCHITECTURES}'.")
endif()
set(suffix_editor $<${is_editor_config}:_editor>)
set(suffix ${suffix_platform}${suffix_arch}${suffix_editor})
if(IOS)
set(info_plist ${templates_dir}/info_ios.plist.in)
else()
set(info_plist ${templates_dir}/info_macos.plist.in)
endif()
set(use_static_crt $<BOOL:${GDJ_STATIC_RUNTIME_LIBRARY}>)
set(msvcrt_debug $<$<CONFIG:Debug,EditorDebug>:Debug>)
set(msvcrt_dll $<$<NOT:${use_static_crt}>:DLL>)
set(msvcrt MultiThreaded${msvcrt_debug}${msvcrt_dll})
set(target_avx512 $<STREQUAL:${GDJ_X86_INSTRUCTION_SET},AVX512>)
set(target_avx2 $<STREQUAL:${GDJ_X86_INSTRUCTION_SET},AVX2>)
set(target_avx $<STREQUAL:${GDJ_X86_INSTRUCTION_SET},AVX>)
set(target_sse2 $<STREQUAL:${GDJ_X86_INSTRUCTION_SET},SSE2>)
set(is_msvc_like $<BOOL:${MSVC}>)
set(is_msvc_cl $<CXX_COMPILER_ID:MSVC>)
set(is_llvm_clang $<CXX_COMPILER_ID:Clang>)
set(is_apple_clang $<CXX_COMPILER_ID:AppleClang>)
set(is_gcc $<CXX_COMPILER_ID:GNU>)
set(is_clang_cl $<AND:${is_msvc_like},${is_llvm_clang}>)
set_target_properties(godot-jolt PROPERTIES
OUTPUT_NAME ${prefix}godot-jolt${suffix}
PREFIX ""
VERSION ${PROJECT_VERSION}
INCLUDE_DIRECTORIES ${source_dir}
DEFINE_SYMBOL ""
INTERPROCEDURAL_OPTIMIZATION_DEVELOPMENT ${GDJ_INTERPROCEDURAL_OPTIMIZATION}
INTERPROCEDURAL_OPTIMIZATION_DISTRIBUTION ${GDJ_INTERPROCEDURAL_OPTIMIZATION}
INTERPROCEDURAL_OPTIMIZATION_EDITORDEVELOPMENT ${GDJ_INTERPROCEDURAL_OPTIMIZATION}
INTERPROCEDURAL_OPTIMIZATION_EDITORDISTRIBUTION ${GDJ_INTERPROCEDURAL_OPTIMIZATION}
# Properties relevant only to Windows/MSVC
MSVC_RUNTIME_LIBRARY ${msvcrt}
# Properties relevant only to Unix-based platforms
SOVERSION ${PROJECT_VERSION}
NO_SONAME TRUE
CXX_VISIBILITY_PRESET hidden
# Properties relevant only to macOS/iOS/Xcode
FRAMEWORK TRUE
MACOSX_RPATH FALSE
INSTALL_NAME_DIR @rpath
MACOSX_FRAMEWORK_INFO_PLIST ${info_plist}
XCODE_ATTRIBUTE_PRODUCT_BUNDLE_IDENTIFIER ${PROJECT_BUNDLE_IDENTIFIER}
)
target_compile_features(godot-jolt
PRIVATE cxx_std_17
)
target_compile_definitions(godot-jolt
PRIVATE GDJ_VERSION_MAJOR=${PROJECT_VERSION_MAJOR}
PRIVATE GDJ_VERSION_MINOR=${PROJECT_VERSION_MINOR}
PRIVATE GDJ_VERSION_PATCH=${PROJECT_VERSION_PATCH}
PRIVATE GDJ_GODOT_VERSION_MAJOR=${GDJ_GODOT_VERSION_MAJOR}
PRIVATE GDJ_GODOT_VERSION_MINOR=${GDJ_GODOT_VERSION_MINOR}
PRIVATE $<${is_windows}:GDJ_PLATFORM_WINDOWS>
PRIVATE $<${is_linux}:GDJ_PLATFORM_LINUX>
PRIVATE $<${is_macos}:GDJ_PLATFORM_MACOS>
PRIVATE $<${is_ios}:GDJ_PLATFORM_IOS>
PRIVATE $<${is_android}:GDJ_PLATFORM_ANDROID>
PRIVATE $<${is_debug_config}:GDJ_CONFIG_DEBUG>
PRIVATE $<${is_development_config}:GDJ_CONFIG_DEVELOPMENT>
PRIVATE $<${is_distribution_config}:GDJ_CONFIG_DISTRIBUTION>
PRIVATE $<${is_editor_config}:GDJ_CONFIG_EDITOR>
PRIVATE $<${use_mimalloc}:GDJ_USE_MIMALLOC>
PRIVATE $<IF:${is_debug_config},_DEBUG,NDEBUG>
PRIVATE $<${is_windows}:WIN32_LEAN_AND_MEAN>
PRIVATE $<${is_windows}:VC_EXTRALEAN>
PRIVATE $<${is_windows}:NOMINMAX>
PRIVATE $<${is_windows}:STRICT>
PRIVATE $<${is_msvc_like}:_HAS_EXCEPTIONS=0>
)
if(GDJ_PRECOMPILE_HEADERS)
target_precompile_headers(godot-jolt
PRIVATE ${pch_file}
)
else()
target_compile_options(godot-jolt
PRIVATE $<IF:${is_msvc_like},/FI${pch_file},-include${pch_file}>
)
endif()
if(MSVC)
# Disable support for exception-handling
string(REPLACE "/EHsc" "/EHs-c-" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
target_compile_options(godot-jolt
PRIVATE /utf-8 # Treat lack of BOM as UTF-8
PRIVATE /W4 # Warning level 4
PRIVATE /w44245 # Enable implicit conversion warning
PRIVATE /w44365 # Enable another implicit conversion warning
PRIVATE /w44800 # Enable another implicit conversion warning
PRIVATE /wd4324 # Disable structure padding warning
PRIVATE /wd4530 # Disable lack of unwind semantics warning
PRIVATE /GF # Enable string pooling
PRIVATE /Gy # Enable function-level linking
PRIVATE /permissive- # Enable standard conformance
PRIVATE /Zc:__cplusplus # Enable updated `__cplusplus` macro
PRIVATE /Zc:inline # Remove unreferenced COMDAT
PRIVATE /Zc:lambda # Enable updated lambda processor
PRIVATE /Zc:preprocessor # Enable standard-conforming preprocessor
PRIVATE /Zc:referenceBinding # Enforce reference binding rules
PRIVATE /volatile:iso # Enable standard-conforming interpretation of `volatile`
PRIVATE $<${is_optimized_config}:/GS-> # Disable security checks
PRIVATE $<${target_avx}:/arch:AVX> # Enable AVX instructions
PRIVATE $<${target_avx2}:/arch:AVX2> # Enable AVX2 instructions
PRIVATE $<${target_avx512}:/arch:AVX512> # Enable AVX-512 instructions
PRIVATE $<${is_msvc_cl}:/MP> # Multi-threaded compilation
PRIVATE $<${is_clang_cl}:-Qunused-arguments> # Disable warnings about unused arguments
)
set(pdb_file_name $<TARGET_PDB_FILE_NAME:godot-jolt>)
target_link_options(godot-jolt
PRIVATE $<${is_distribution_config}:/PDBALTPATH:${pdb_file_name}> # Strip PDB path
)
else()
set(use_avx512 $<BOOL:${GDJ_USE_AVX512}>)
set(use_avx2 $<BOOL:${GDJ_USE_AVX2}>)
set(use_bmi1 $<BOOL:${GDJ_USE_BMI1}>)
set(use_fma3 $<BOOL:${GDJ_USE_FMA3}>)
set(use_f16c $<BOOL:${GDJ_USE_F16C}>)
set(use_avx $<BOOL:${GDJ_USE_AVX}>)
set(use_sse4_2 $<BOOL:${GDJ_USE_SSE4_2}>)
set(use_sse2 $<BOOL:${GDJ_USE_SSE2}>)
target_compile_options(godot-jolt
PRIVATE -Wall # Enable common warnings
PRIVATE -Wextra # Enable more common warnings
PRIVATE -pedantic # Enable standard conformance warnings
PRIVATE -Wconversion # Enable implicit conversion warnings
PRIVATE -Wsign-conversion # Enable more implicit conversion warnings
PRIVATE -Wcast-qual # Enable warnings about casting away qualifiers
PRIVATE -Wshadow # Enable variable/type shadowing warnings
PRIVATE -Wundef # Enable warnings about undefined identifiers in `#if` directives
PRIVATE -Wno-gnu-zero-variadic-macro-arguments # Disable zero variadic macro args warning
PRIVATE -pthread # Use POSIX threads
PRIVATE -fno-exceptions # Disable support for exception-handling
PRIVATE $<${use_sse2}:-msse2> # Enable SSE2 instructions
PRIVATE $<${use_sse4_2}:-msse4.2> # Enable SSE4.2 instructions
PRIVATE $<${use_sse4_2}:-mpopcnt> # Enable the POPCNT instruction
PRIVATE $<${use_avx}:-mavx> # Enable AVX instructions
PRIVATE $<${use_f16c}:-mf16c> # Enable F16C instructions
PRIVATE $<${use_fma3}:-mfma> # Enable FMA3 instructions
PRIVATE $<${use_bmi1}:-mbmi> # Enable BMI1 instructions
PRIVATE $<${use_bmi1}:-mlzcnt> # Enable the LZCNT instruction
PRIVATE $<${use_avx2}:-mavx2> # Enable AVX2 instructions
PRIVATE $<${use_avx512}:-mavx512f> # Enable AVX-512 Foundation instructions
PRIVATE $<${use_avx512}:-mavx512vl> # Enable AVX-512 Vector Length instructions
PRIVATE $<${use_avx512}:-mavx512dq> # Enable AVX-512 Doubleword and Quadword instructions
PRIVATE $<${is_gcc}:-no-integrated-cpp> # Workaround for GCC ignoring _Pragma (GCC#53431)
PRIVATE $<${is_apple_clang}:-faligned-allocation> # Silence non-aligned allocation errors
)
if(APPLE)
gdj_generate_exports_ld64(exports_file)
else()
gdj_generate_exports_ld(exports_file)
endif()
target_link_options(godot-jolt
PRIVATE $<${is_linux}:-Wl,--version-script,${exports_file}>
PRIVATE $<${is_android}:-Wl,--version-script,${exports_file}>
PRIVATE $<${is_ios}:-Wl,-exported_symbols_list,${exports_file}>
PRIVATE $<${is_macos}:-Wl,-exported_symbols_list,${exports_file}>
PRIVATE $<${use_static_crt}:-static-libgcc> # Link libgcc statically
PRIVATE $<${use_static_crt}:-static-libstdc++> # Link libstdc++ statically
)
endif()
if(MSVC)
set(debug_symbols $<TARGET_PDB_FILE:godot-jolt>)
elseif(APPLE)
if(GDJ_INTERPROCEDURAL_OPTIMIZATION)
# HACK(mihe): When compiling with LTO enabled on macOS we need to tell its linker not to
# discard the temporary object files that it generates during LTO, otherwise we won't be
# able to map the source files when we actually try to debug with these symbols.
# https://clang.llvm.org/docs/CommandGuide/clang.html#cmdoption-flto
set(lto_path ${CMAKE_CURRENT_BINARY_DIR}/$<CONFIG>/lto/godot-jolt)
target_link_options(godot-jolt PRIVATE -Wl,-object_path_lto,${lto_path})
endif()
if(DEFINED CMAKE_DSYMUTIL)
set(DSYMUTIL_EXECUTABLE ${CMAKE_DSYMUTIL})
else()
find_program(DSYMUTIL_EXECUTABLE dsymutil REQUIRED)
mark_as_advanced(DSYMUTIL_EXECUTABLE)
endif()
if(DEFINED CMAKE_STRIP)
set(STRIP_EXECUTABLE ${CMAKE_STRIP})
else()
find_program(STRIP_EXECUTABLE strip REQUIRED)
mark_as_advanced(STRIP_EXECUTABLE)
endif()
set(dylib_file $<TARGET_FILE:godot-jolt>)
set(framework_dir $<TARGET_BUNDLE_DIR:godot-jolt>)
set(dsym_dir ${framework_dir}.dSYM)
set(cmd_copy_symbols ${DSYMUTIL_EXECUTABLE} ${dylib_file} -o ${dsym_dir})
set(cmd_strip_symbols ${STRIP_EXECUTABLE} -Sx ${dylib_file})
add_custom_command(
TARGET godot-jolt POST_BUILD
COMMAND "$<${is_distribution_config}:${cmd_copy_symbols}>"
COMMAND "$<${is_distribution_config}:${cmd_strip_symbols}>"
COMMAND_EXPAND_LISTS
VERBATIM
)
set(debug_symbols ${dsym_dir})
else() # ANDROID/UNIX
if(DEFINED CMAKE_OBJCOPY)
set(OBJCOPY_EXECUTABLE ${CMAKE_OBJCOPY})
else()
find_program(OBJCOPY_EXECUTABLE objcopy REQUIRED)
mark_as_advanced(OBJCOPY_EXECUTABLE)
endif()
set(so_file $<TARGET_FILE:godot-jolt>)
set(debug_file ${so_file}.debug)
set(cmd_copy_symbols ${OBJCOPY_EXECUTABLE} --only-keep-debug ${so_file} ${debug_file})
set(cmd_strip_symbols ${OBJCOPY_EXECUTABLE} --strip-debug --strip-unneeded ${so_file})
set(cmd_link_symbols ${OBJCOPY_EXECUTABLE} --add-gnu-debuglink=${debug_file} ${so_file})
add_custom_command(
TARGET godot-jolt POST_BUILD
COMMAND "$<${is_distribution_config}:${cmd_copy_symbols}>"
COMMAND "$<${is_distribution_config}:${cmd_strip_symbols}>"
COMMAND "$<${is_distribution_config}:${cmd_link_symbols}>"
COMMAND_EXPAND_LISTS
VERBATIM
)
set(debug_symbols ${debug_file})
endif()
gdj_generate_gdextension_file(gdextension_file)
set(addon_dir addons/godot-jolt)
string(CONCAT addon_platform_dir
${addon_dir}/
$<${is_windows}:windows>
$<${is_linux}:linux>
$<${is_macos}:macos>
$<${is_android}:android>
$<${is_ios}:ios>
)
install(
FILES
${gdextension_file}
LICENSE.txt
THIRDPARTY.txt
DESTINATION ${addon_dir}
)
install(
TARGETS godot-jolt
RUNTIME DESTINATION ${addon_platform_dir}
LIBRARY DESTINATION ${addon_platform_dir} NAMELINK_SKIP
FRAMEWORK DESTINATION ${addon_platform_dir}
)
if(GDJ_INSTALL_DEBUG_SYMBOLS)
install(
FILES ${debug_symbols}
DESTINATION ${addon_platform_dir}
)
endif()