-
Notifications
You must be signed in to change notification settings - Fork 72
/
CMakeLists.txt
453 lines (367 loc) · 12.7 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
cmake_minimum_required(VERSION 3.1)
project(binlog VERSION 0.1.0 LANGUAGES CXX)
#---------------------------
# CMake modules
#---------------------------
set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH})
include(AddressSanitizer)
include(CMakePackageConfigHelpers)
include(CTest)
include(CheckFunctionExists)
include(CheckLibraryExists)
include(Coverage)
include(MarkdownToHtml)
include(OptionalCompileOption)
include(ThreadSanitizer)
include(UndefinedSanitizer)
#---------------------------
# Depencencies
#---------------------------
set(THREADS_PREFER_PTHREAD_FLAG ON)
find_package(Threads REQUIRED)
find_package(Boost 1.64.0)
find_package(benchmark COMPONENTS benchmark)
#---------------------------
# CMake workarounds
#---------------------------
set(BINLOG_IS_TOPLEVEL_PROJECT OFF)
if(${CMAKE_PROJECT_NAME} STREQUAL ${PROJECT_NAME})
set(BINLOG_IS_TOPLEVEL_PROJECT ON)
endif()
function(optional_include_boost target)
if(Boost_FOUND)
if(CMAKE_VERSION VERSION_GREATER 3.5)
target_link_libraries(${target} Boost::boost) # headers
else()
target_include_directories(${target} SYSTEM PRIVATE ${Boost_INCLUDE_DIRS})
endif()
target_compile_definitions(${target} PRIVATE BINLOG_HAS_BOOST)
endif()
endfunction()
# do not use -rdynamic, make binaries smaller
if(POLICY CMP0065)
cmake_policy(SET CMP0065 NEW)
endif()
#---------------------------
# Build type
#---------------------------
if(BINLOG_IS_TOPLEVEL_PROJECT)
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
message(STATUS "Defaulting to build type: 'RelWithDebInfo'")
set(CMAKE_BUILD_TYPE "RelWithDebInfo" CACHE STRING "Debug|Release|RelWithDebInfo|MinSizeRel" FORCE)
endif()
endif()
#---------------------------
# C++ standard
#---------------------------
if(BINLOG_IS_TOPLEVEL_PROJECT)
set(CMAKE_CXX_STANDARD 14 CACHE STRING "C++ standard (11/14/17/20/...)") # -std=c++14
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF) # no gnu++14
endif()
#---------------------------
# Compiler options
#---------------------------
if(BINLOG_IS_TOPLEVEL_PROJECT)
if (MSVC)
add_compile_options(/W4)
if (MSVC_VERSION GREATER_EQUAL 1914)
add_compile_options(/Zc:__cplusplus)
endif()
else ()
add_compile_options(-Wall -Wextra -Werror -pedantic)
add_optional_compile_options(-Wconversion -Wsign-conversion -Wold-style-cast -Wsuggest-override -Wshadow)
endif ()
endif()
#---------------------------
# Platform specific configuration
#---------------------------
# clock_gettime
check_function_exists("clock_gettime" HAS_CLOCK_GETTIME)
if(NOT HAS_CLOCK_GETTIME)
# Before glibc 2.17, clock_gettime is in librt
check_library_exists("rt" "clock_gettime" "" CLOCK_GETTIME_IN_LIBRT)
set(HAS_CLOCK_GETTIME 1)
endif()
# Interprocedural Optimization (LTO)
if(POLICY CMP0069)
cmake_policy(SET CMP0069 NEW)
include(CheckIPOSupported) # fails if policy 69 is not set
check_ipo_supported(RESULT BINLOG_HAS_IPO)
if(BINLOG_HAS_IPO)
message(STATUS "Use interprocedural optimization")
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
# avoid error when mixing clang 10 lto and ld:
# /usr/bin/ld: libbinlog.a: error adding symbols: file format not recognized
message(STATUS "Use lld")
add_link_options("-fuse-ld=lld")
endif()
endif()
endif()
#---------------------------
# clang-tidy
#---------------------------
option(BINLOG_USE_CLANG_TIDY "Run clang-tidy on sources" OFF)
if(BINLOG_USE_CLANG_TIDY)
if(CMAKE_VERSION VERSION_GREATER 3.6)
find_program(CLANG_TIDY_EXE NAMES "clang-tidy")
if (CLANG_TIDY_EXE)
message(STATUS "Use clang-tidy: ${CLANG_TIDY_EXE}")
set(CMAKE_CXX_CLANG_TIDY "${CLANG_TIDY_EXE}" -warnings-as-errors=*)
message(STATUS "Disable interprocedural optimization because of clang-tidy")
set(BINLOG_HAS_IPO OFF)
else()
message(SEND_ERROR "clang-tidy executable not found")
endif()
else()
message(SEND_ERROR "clang-tidy was requested, but cmake is too old, 3.6 or greater is required")
endif()
endif()
#---------------------------
# binlog libraries
#---------------------------
add_library(headers INTERFACE)
if(BINLOG_IS_TOPLEVEL_PROJECT)
target_include_directories(headers INTERFACE
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:include>
)
else()
target_include_directories(headers SYSTEM INTERFACE
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:include>
)
endif()
if(CLOCK_GETTIME_IN_LIBRT)
target_link_libraries(headers INTERFACE -lrt)
endif()
add_library(binlog STATIC
include/binlog/EventStream.cpp
include/binlog/Time.cpp
include/binlog/ToStringVisitor.cpp
include/binlog/PrettyPrinter.cpp
include/binlog/EntryStream.cpp
include/binlog/TextOutputStream.cpp
include/binlog/detail/OstreamBuffer.cpp
)
target_link_libraries(binlog PUBLIC headers)
set_property(TARGET binlog PROPERTY INTERPROCEDURAL_OPTIMIZATION ${BINLOG_HAS_IPO})
# make add_subdirectory usage consistent with find_package
if(NOT BINLOG_IS_TOPLEVEL_PROJECT)
add_library(binlog::headers ALIAS headers)
add_library(binlog::binlog ALIAS binlog)
endif()
list(APPEND BINLOG_INSTALL_TARGETS "headers" "binlog")
#---------------------------
# bread
#---------------------------
option(BINLOG_BUILD_BREAD "Build the bread binary" ON)
if (BINLOG_BUILD_BREAD)
add_executable(bread
bin/bread.cpp
bin/printers.cpp
$<$<PLATFORM_ID:Windows>:bin/getopt.cpp bin/binaryio.cpp>
)
target_link_libraries(bread PRIVATE binlog)
set_property(TARGET bread PROPERTY INTERPROCEDURAL_OPTIMIZATION ${BINLOG_HAS_IPO})
list(APPEND BINLOG_INSTALL_TARGETS "bread")
endif()
#---------------------------
# brecovery
#---------------------------
option(BINLOG_BUILD_BRECOVERY "Build the brecovery binary" ON)
if (BINLOG_BUILD_BRECOVERY)
add_executable(brecovery
bin/brecovery.cpp
$<$<PLATFORM_ID:Windows>:bin/binaryio.cpp>
)
target_link_libraries(brecovery PRIVATE binlog)
list(APPEND BINLOG_INSTALL_TARGETS "brecovery")
endif()
#---------------------------
# Documentation
#---------------------------
markdown_to_html_group(Documentation UserGuide Internals Mserialize)
#---------------------------
# Examples
#---------------------------
option(BINLOG_BUILD_EXAMPLES "Build the examples" ON)
if (BINLOG_BUILD_EXAMPLES)
function(add_example name)
add_executable(${name} example/${name}.cpp)
target_link_libraries(${name} headers)
endfunction()
add_example(HelloWorld)
add_example(DetailedHelloWorld)
add_example(ConsumeLoop)
add_example(LogRotation)
add_example(TextOutput)
target_link_libraries(TextOutput binlog)
add_example(MultiOutput)
target_link_libraries(MultiOutput binlog)
add_example(TscClock)
endif()
#---------------------------
# Unit Test
#---------------------------
option(BINLOG_BUILD_UNIT_TESTS "Build the unit tests" ON)
if (BINLOG_BUILD_UNIT_TESTS)
message(STATUS "Build unit tests")
add_executable(UnitTest
test/unit/UnitTest.cpp
test/unit/mserialize/roundtrip.cpp
test/unit/mserialize/cx_string.cpp
test/unit/mserialize/tag.cpp
test/unit/mserialize/visit.cpp
test/unit/mserialize/documentation.cpp
test/unit/mserialize/inttohex.cpp
test/unit/mserialize/singular.cpp
test/unit/mserialize/tag_util.cpp
test/unit/binlog/TestEventStream.cpp
test/unit/binlog/TestTime.cpp
test/unit/binlog/TestToStringVisitor.cpp
test/unit/binlog/TestPrettyPrinter.cpp
test/unit/binlog/TestQueue.cpp
test/unit/binlog/TestSession.cpp
test/unit/binlog/TestSessionWriter.cpp
test/unit/binlog/TestCreateSourceAndEvent.cpp
test/unit/binlog/TestCreateSourceAndEventIf.cpp
test/unit/binlog/TestAdvancedLogMacros.cpp
test/unit/binlog/TestBasicLogMacros.cpp
test/unit/binlog/TestArrayView.cpp
test/unit/binlog/TestConstCharPtrIsString.cpp
test/unit/binlog/TestEntryStream.cpp
test/unit/binlog/TestTextOutputStream.cpp
test/unit/binlog/TestEventFilter.cpp
test/unit/binlog/detail/TestOstreamBuffer.cpp
test/unit/binlog/detail/TestSegmentedMap.cpp
bin/printers.cpp
test/unit/binlog/TestPrinters.cpp
test/unit/binlog/test_utils.cpp
)
target_compile_definitions(UnitTest PRIVATE
DOCTEST_CONFIG_SUPER_FAST_ASSERTS
DOCTEST_CONFIG_NO_MULTI_LANE_ATOMICS
)
optional_include_boost(UnitTest) # used by: roundtrip.cpp
target_link_libraries(UnitTest binlog)
target_link_libraries(UnitTest Threads::Threads) # used by: TestQueue, TestSessionWriter, TestCreateSourceAndEvent
target_include_directories(UnitTest PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/bin)
target_include_directories(UnitTest SYSTEM PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/test) # for doctest/doctest.h
add_test(NAME UnitTest COMMAND UnitTest -s --force-colors)
set_property(TEST UnitTest PROPERTY ENVIRONMENT ASAN_OPTIONS=detect_leaks=1)
endif()
#---------------------------
# Integration Test
#---------------------------
option(BINLOG_BUILD_INTEGRATION_TESTS "Build the integration tests" ON)
if (BINLOG_BUILD_INTEGRATION_TESTS)
message(STATUS "Build integration tests")
add_executable(IntegrationTest test/integration/IntegrationTest.cpp)
target_compile_definitions(IntegrationTest PRIVATE
DOCTEST_CONFIG_SUPER_FAST_ASSERTS
DOCTEST_CONFIG_NO_MULTI_LANE_ATOMICS
)
target_link_libraries(IntegrationTest headers)
target_include_directories(IntegrationTest SYSTEM PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/test) # for doctest/doctest.h
set_target_properties(IntegrationTest PROPERTIES CXX_CLANG_TIDY "")
add_test(NAME IntegrationTest
COMMAND IntegrationTest -s --force-colors -- "$<TARGET_FILE:bread>" "$<TARGET_FILE_DIR:IntegrationTest>" "${PROJECT_SOURCE_DIR}")
set_property(TEST IntegrationTest PROPERTY ENVIRONMENT ASAN_OPTIONS=detect_leaks=1:allocator_may_return_null=1)
function(add_inttest name)
add_executable(${name} test/integration/${name}.cpp $<$<PLATFORM_ID:Windows>:bin/binaryio.cpp>)
target_link_libraries(${name} headers)
endfunction()
add_inttest(Logging)
add_inttest(LoggingFundamentals)
add_inttest(LoggingContainers)
add_inttest(LoggingStrings)
add_inttest(LoggingCStrings)
add_inttest(LoggingPointers)
add_inttest(LoggingTuples)
add_inttest(LoggingTimePoint)
add_inttest(LoggingDuration)
add_inttest(LoggingEnums)
add_inttest(LoggingAdaptedStructs)
add_inttest(LoggingErrorCode)
add_inttest(NamedWriters)
add_inttest(SeverityControl)
add_inttest(Categories)
add_inttest(Shell)
if(BINLOG_USE_ASAN OR BINLOG_USE_TSAN)
# Crash recovery test creates a coredump of Shell.
# Make sure it is not compiled with any sanitizer,
# to avoid dumping a multi TB shadow memory.
target_compile_options(Shell PRIVATE "-fno-sanitize=all")
target_link_options(Shell PRIVATE "-fno-sanitize=all")
endif()
if(${CMAKE_CXX_STANDARD} GREATER_EQUAL 17)
add_inttest(LoggingOptionals)
add_inttest(LoggingFilesystem)
add_inttest(LoggingVariants)
endif()
if(${CMAKE_CXX_STANDARD} GREATER_EQUAL 20)
add_inttest(LoggingAdaptedConcepts)
endif()
if(Boost_FOUND)
target_compile_definitions(IntegrationTest PRIVATE BINLOG_HAS_BOOST)
add_inttest(LoggingBoostTypes)
optional_include_boost(LoggingBoostTypes)
endif()
endif()
#---------------------------
# Performance Test
#---------------------------
if (benchmark_FOUND)
message(STATUS "Build performance tests")
function(add_benchmark name)
add_executable(${name} test/perf/${name}.cpp)
target_link_libraries(${name} headers)
target_link_libraries(${name} benchmark::benchmark)
endfunction()
add_benchmark(PerftestQueue)
add_benchmark(PerftestSessionWriter)
else ()
message(STATUS "Google Benchmark library not found, will not build performance tests")
endif ()
#---------------------------
# Tools
#---------------------------
add_executable(LargeLogfile test/perf/LargeLogfile.cpp)
target_link_libraries(LargeLogfile headers)
add_executable(GenerateForeachMacro tools/generate_foreach_macro.cpp)
#---------------------------
# Install
#---------------------------
write_basic_package_version_file(
binlogConfigVersion.cmake
VERSION ${PACKAGE_VERSION}
COMPATIBILITY ExactVersion
)
configure_package_config_file(
"${PROJECT_SOURCE_DIR}/cmake/binlogConfig.cmake.in"
"${PROJECT_BINARY_DIR}/binlogConfig.cmake"
INSTALL_DESTINATION lib/cmake/binlog
)
install(
FILES "${PROJECT_BINARY_DIR}/binlogConfigVersion.cmake"
"${PROJECT_BINARY_DIR}/binlogConfig.cmake"
DESTINATION lib/cmake/binlog
)
install(
TARGETS ${BINLOG_INSTALL_TARGETS}
EXPORT binlogTargets
RUNTIME DESTINATION bin
ARCHIVE DESTINATION lib
)
install(
EXPORT binlogTargets
FILE binlogTargets.cmake
NAMESPACE binlog::
DESTINATION lib/cmake/binlog
)
install(
DIRECTORY ${PROJECT_SOURCE_DIR}/include/
DESTINATION include
FILES_MATCHING PATTERN "*.hpp"
)