-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
456 lines (380 loc) · 14.5 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
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
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
#!/usr/bin/cmake
cmake_minimum_required (VERSION 3.15)
# -------------------------------------------------------------------------------------------------
project(
NuclexPlatformNative
VERSION 1.0.0
DESCRIPTION "Platform abstraction layer for Windows and Linux"
)
option(
BUILD_DOCS
"Whether to generate documentation via Doxygen"
OFF
)
option(
BUILD_UNIT_TESTS
"Whether to build the unit test executable. This will require an extra \
compilation of the entire source tree as well as the GoogleTest library."
OFF
)
option(
BUILD_BENCHMARK
"Whether to build the benchmark executable. This will require an extra \
compilation of the entire source tree as well as the Celero library."
OFF
)
# -------------------------------------------------------------------------------------------------
# This sets a bunch of compile flags and defined ${NUCLEX_COMPILER_TAG} to
# say something like linux-gcc-13.2-amd64-debug. You should have this directory
# if you do a full clone of a project that is using this third-party library build.
include("../build-system/cmake/cplusplus.cmake")
# The Unix build pipeline doesn't automatically include threading, so search for
# the pthreads library in order to link against it later on.
# https://en.wikipedia.org/wiki/Pthreads
find_package(Threads REQUIRED)
# Add Nuclex.Support.Native as a sub-project, we link it for utility methods.
if(NOT (TARGET NuclexSupportNative))
add_subdirectory(
${PROJECT_SOURCE_DIR}/../Nuclex.Support.Native
${CMAKE_BINARY_DIR}/NuclexSupportNative
)
endif()
message(STATUS "Enabled options for Nuclex.Platform.Native:")
message(STATUS " ⚫ Build core library")
if(BUILD_UNIT_TESTS)
message(STATUS " ⚫ Build unit tests")
# Add GoogleTest as a sub-project so we can link our unit test executable
if(NOT (TARGET GoogleTest))
add_subdirectory(
${PROJECT_SOURCE_DIR}/../third-party/nuclex-googletest
${CMAKE_BINARY_DIR}/nuclex-googletest
)
endif()
endif()
if(BUILD_BENCHMARK)
message(STATUS " ⚫ Build benchmark")
# Add Celero as a sub-project so we can link our benchmark executable
if(NOT (TARGET Celero))
add_subdirectory(
${PROJECT_SOURCE_DIR}/../third-party/nuclex-celero
${CMAKE_BINARY_DIR}/nuclex-celero
)
endif()
endif()
# Use CMake's own package for locating Doxygen on the system
if(BUILD_DOCS)
find_package(Doxygen)
endif()
# -------------------------------------------------------------------------------------------------
# Project structure
#
# ProjectName/
# Source/ All source files, using deeper directories as needed
# Include/ProjectName/ All public headers, using deeper directories as needed
# Tests/ All unit tests, using deeper directories as needed
# Benchmarks/ All benchmark files, using deeper directories as needed
#
# CMake documentation:
# | Note: We do not recommend using GLOB to collect a list of
# | source files from your source tree. If no CMakeLists.txt file
# | changes when a source is added or removed then the generated
# | build system cannot know when to ask CMake to regenerate.
#
# As so very often, CMake becomes a hurdle rather than helping.
# I'm not going to manually maintain a list of source files. Rebuilds
# where files are added, removed or renamed need to be from scratch.
#
file(
GLOB_RECURSE sourceFiles
CONFIGURE_DEPENDS
"Source/*.cpp"
"Source/*.c"
)
file(
GLOB_RECURSE headerFiles
CONFIGURE_DEPENDS
"Include/Nuclex/Platform/*.h"
)
file(
GLOB_RECURSE unittestFiles
CONFIGURE_DEPENDS
"Tests/*.cpp"
)
file(
GLOB_RECURSE benchmarkFiles
CONFIGURE_DEPENDS
"Benchmarks/*.cpp"
)
# -------------------------------------------------------------------------------------------------
function(add_third_party_libraries target_name)
# On Unix systems, the library and unit test executable should look for
# dependencies in its own directory first.
set_target_properties(
${target_name} PROPERTIES
BUILD_RPATH_USE_ORIGIN ON
BUILD_WITH_INSTALL_RPATH ON
INSTALL_RPATH_USE_LINK_PATH OFF
INSTALL_RPATH "\${ORIGIN}"
)
endfunction()
# -------------------------------------------------------------------------------------------------
# Shared library that can be linked to other projects
add_library(NuclexPlatformNative SHARED)
# Enable compiler warnings only if this library is compiled on its own.
# If it's used as a sub-project, the including project's developers aren't
# interested in seeing warnings from a project they're not maintaining.
if(${CMAKE_PROJECT_NAME} STREQUAL "NuclexPlatformNative")
enable_target_compiler_warnings(NuclexPlatformNative)
else()
disable_target_compiler_warnings(NuclexPlatformNative)
endif()
# Add directory with public headers to include path
target_include_directories(
NuclexPlatformNative
PUBLIC "Include"
)
# Add public headers and sources to compilation list
# (headers, too, in case CMake is used to generate an IDE project)
target_sources(
NuclexPlatformNative
PUBLIC ${headerFiles}
PRIVATE ${sourceFiles}
)
# Link against PThreads and Nuclex.Support.Native
target_link_libraries(
NuclexPlatformNative
PRIVATE Threads::Threads
PUBLIC NuclexSupportNative
)
# Add include directories and static libraries of all enabled image formats
add_third_party_libraries(NuclexPlatformNative)
# On Windows, we want the shared library to be named Nuclex.Platform.Native.dll
if(WIN32)
set_target_properties(
NuclexPlatformNative
PROPERTIES OUTPUT_NAME "Nuclex.Platform.Native"
)
endif()
# -------------------------------------------------------------------------------------------------
if(BUILD_UNIT_TESTS)
# Executable that runs the unit tests (main() supplied by GoogleTest)
add_executable(NuclexPlatformNativeTests)
# Enable compiler warnings only if this library is compiles on its own.
# If it's used as a sub-project, the including project's developers aren't
# interested in seeing warnings from a project they're not maintaining.
if(${CMAKE_PROJECT_NAME} STREQUAL "NuclexPlatformNative")
enable_target_compiler_warnings(NuclexPlatformNativeTests)
else()
disable_target_compiler_warnings(NuclexPlatformNativeTests)
endif()
# Let the code know it's not being compiled into a shared library
# (this disables visibility/exports, thus allowing the compiler detect
# additional unused code and warn about it)
target_compile_definitions(
NuclexPlatformNativeTests
PRIVATE NUCLEX_PLATFORM_EXECUTABLE
)
# Add directory with public headers to include path
target_include_directories(
NuclexPlatformNativeTests
PUBLIC "Include"
)
# Add public headers and sources (normal + unit tests) to compilation list
# (headers, too, in case CMake is used to generate an IDE project)
target_sources(
NuclexPlatformNativeTests
PRIVATE ${headerFiles}
PRIVATE ${sourceFiles}
PRIVATE ${unittestFiles}
)
# Link GoogleTest and the main() function supplied by GoogleTest
# Also link against PThreads
target_link_libraries(
NuclexPlatformNativeTests
PRIVATE GoogleTest::Static
PRIVATE GoogleTest::Main
PRIVATE Threads::Threads
PUBLIC NuclexSupportNative
)
add_third_party_libraries(NuclexPlatformNativeTests)
# On Windows, we want the executable to be named Nuclex.Platform.Native.Tests.exe
if(WIN32)
set_target_properties(
NuclexPlatformNativeTests
PROPERTIES OUTPUT_NAME "Nuclex.Platform.Native.Tests"
)
endif()
endif() # if BUILD_UNIT_TESTS enabled
# -------------------------------------------------------------------------------------------------
if(BUILD_BENCHMARK)
# Executable that runs the benchmark (main() supplied by Celero)
add_executable(NuclexPlatformNativeBenchmark)
# Enable compiler warnings only if this library is compiled on its own.
# If it's used as a sub-project, the including project's developers aren't
# interested in seeing warnings from a project they're not maintaining.
if(${CMAKE_PROJECT_NAME} STREQUAL "NuclexPlatformNative")
enable_target_compiler_warnings(NuclexPlatformNativeBenchmark)
else()
disable_target_compiler_warnings(NuclexPlatformNativeBenchmark)
endif()
# Let the code know it's not being compiled into a shared library
# (this disables visibility/exports, thus allowing the compiler detect
# additional unused code and warn about it)
target_compile_definitions(
NuclexPlatformNativeBenchmark
PRIVATE NUCLEX_PLATFORM_EXECUTABLE
)
# Add directory with public headers to include path
target_include_directories(
NuclexPlatformNativeBenchmark
PUBLIC "Include"
)
# Add public headers and sources (normal + benchmark) to compilation list
# (headers, too, in case CMake is used to generate an IDE project)
target_sources(
NuclexPlatformNativeBenchmark
PRIVATE ${headerFiles}
PRIVATE ${sourceFiles}
PRIVATE ${benchmarkFiles}
)
# Link Celero
# Also link against PThreads
target_link_libraries(
NuclexPlatformNativeBenchmark
PRIVATE Celero
PRIVATE Threads::Threads
PUBLIC NuclexSupportNative
)
add_third_party_libraries(NuclexPlatformNativeBenchmark)
# On Windows, we want the executable to be named Nuclex.Platform.Native.Benchmark.exe
if(WIN32)
set_target_properties(
NuclexPlatformNativeBenchmark
PROPERTIES OUTPUT_NAME "Nuclex.Platform.Native.Benchmark"
)
endif()
endif() # if BUILD_BENCHMARK enabled
# -------------------------------------------------------------------------------------------------
# Install the shared library into a subdirectory of this CMakeLists.txt file
# under ./bin/linux-gcc9.3-amd64-debug/ (the second-level directory is called
# "compiler tag" and dynamically formed -- it ensures that when linking
# a pre-compiled shared library, the correct library is used).
install(
TARGETS NuclexPlatformNative
ARCHIVE DESTINATION ${PROJECT_SOURCE_DIR}/bin/${NUCLEX_COMPILER_TAG}
LIBRARY DESTINATION ${PROJECT_SOURCE_DIR}/bin/${NUCLEX_COMPILER_TAG}
RUNTIME DESTINATION ${PROJECT_SOURCE_DIR}/bin/${NUCLEX_COMPILER_TAG}
)
# Install .pdb files on Windows platforms for the main library.
install_debug_symbols(NuclexPlatformNative)
# Do the same for Nuclex.Support.Native. Since we depend on this library
# and have set the rpath accordingly, it needs to be in the same directory
install(
TARGETS NuclexSupportNative
ARCHIVE DESTINATION ${PROJECT_SOURCE_DIR}/bin/${NUCLEX_COMPILER_TAG}
LIBRARY DESTINATION ${PROJECT_SOURCE_DIR}/bin/${NUCLEX_COMPILER_TAG}
RUNTIME DESTINATION ${PROJECT_SOURCE_DIR}/bin/${NUCLEX_COMPILER_TAG}
)
# Install unit tests in same location as shared library.
if(BUILD_UNIT_TESTS)
install(
TARGETS NuclexPlatformNativeTests
RUNTIME DESTINATION ${PROJECT_SOURCE_DIR}/bin/${NUCLEX_COMPILER_TAG}
)
# Install .pdb files on Windows platforms for the unit tests, too.
install_debug_symbols(NuclexPlatformNativeTests)
endif()
# Install benchmarks in same location as shared library.
if(BUILD_BENCHMARK)
install(
TARGETS NuclexPlatformNativeBenchmark
RUNTIME DESTINATION ${PROJECT_SOURCE_DIR}/bin/${NUCLEX_COMPILER_TAG}
)
# Install .pdb files on Windows platforms for the benchmark, too.
install_debug_symbols(NuclexPlatformNativeBenchmark)
endif()
# -------------------------------------------------------------------------------------------------
if(BUILD_DOCS)
if(NOT DOXYGEN_FOUND)
message(FATAL_ERROR "Can't build documentation because Doxygen was not found")
endif()
add_custom_target(
NuclexPlatformNativeDocs ALL
COMMAND ${DOXYGEN_EXECUTABLE} "Nuclex.Platform.Native.doxygen.cfg"
WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}
)
endif()
# -------------------------------------------------------------------------------------------------
file(
WRITE "${PROJECT_SOURCE_DIR}/NuclexPlatformNativeConfig.cmake"
"#!/usr/bin/cmake
# Configuration to include Nuclex.Platform.Native in a CMake-based project. If you want to
# reference Nuclex.Platform.Native as an externally compiled static library, do this:
#
# set(NuclexPlatformNative_DIR \"../Nuclex.Platform.Native\")
# find_package(NuclexPlatformNative REQUIRED CONFIG)
#
# target_link_libraries(
# MyAwesomeProject
# PRIVATE NuclexPlatformNative::Dynamic
# )
#
# Alternatively, if you want to build Nuclex.Platform.Native together with your project,
# use the normal CMakeLists.txt with CMake's add_subdirectory() command:
#
# add_subdirectory(
# \"\${PROJECT_SOURCE_DIR}/../Nuclex.Platform.Native\"
# \"\${CMAKE_BINARY_DIR}/nuclex.pixels.native\"
# )
#
# target_link_libraries(
# MyAwesomeProject
# PRIVATE NuclexPlatformNative
# )
#
# -------------------------------------------------------------------------------------------------
if(NOT DEFINED NUCLEX_COMPILER_TAG)
message(
FATAL_ERROR
\"NUCLEX_COMPILER_TAG not defined! Include cplusplus.cmake before importing this package \\
in order to generate a tag identifying the platform/compiler/architecture/variant!\"
)
endif()
# -------------------------------------------------------------------------------------------------
if(NOT EXISTS \"\${CMAKE_CURRENT_LIST_DIR}/bin/\${NUCLEX_COMPILER_TAG}\")
# TODO: Warn and link release build when compiling in debug mode
# TODO: Warn and link build for older compiler version if found
message(
FATAL_ERROR
\"Directory '\${CMAKE_CURRENT_LIST_DIR}/bin/\${NUCLEX_COMPILER_TAG}' not found. \\
Please either build and install this project before importing it via \\
find_package() or use this project's main CMakeFiles.txt via add_subdirectory()!\"
)
endif()
# -------------------------------------------------------------------------------------------------
add_library(NuclexPlatformNative::Dynamic SHARED IMPORTED)
# This may cause warnings on recent GCC versions (10.0.0+?) with LTO because GCC detects
# that the headers used during build (residing in build/) are not the same used when
# linking the library (copies resising in Include/).
#
# CMake doesn't run the install step during build, so the only way to get the headers
# in place before building would be by copying them rather than installing them.
set_target_properties(
NuclexPlatformNative::Dynamic PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES \"\${CMAKE_CURRENT_LIST_DIR}/Include\"
IMPORTED_LINK_INTERFACE_LANGUAGES \"C\"
)
if(WIN32)
set_target_properties(
NuclexPlatformNative::Dynamic PROPERTIES
IMPORTED_LOCATION \"\${CMAKE_CURRENT_LIST_DIR}/bin/\${NUCLEX_COMPILER_TAG}/Nuclex.Platform.Native.lib\"
)
else()
set_target_properties(
NuclexPlatformNative::Dynamic PROPERTIES
IMPORTED_LOCATION \"\${CMAKE_CURRENT_LIST_DIR}/bin/\${NUCLEX_COMPILER_TAG}/libNuclexPlatformNative.so\"
)
endif()
message(STATUS \"Imported Nuclex.Platform.Native targets with binaries in '\${CMAKE_CURRENT_LIST_DIR}'\")"
)
# -------------------------------------------------------------------------------------------------