-
Notifications
You must be signed in to change notification settings - Fork 13
/
CMakeLists.txt
82 lines (61 loc) · 1.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
cmake_minimum_required(VERSION 3.14)
include(cmake/prelude.cmake)
project(
binary_log
VERSION 0.1.0
DESCRIPTION "Fast binary logger C++20"
HOMEPAGE_URL "https://github.com/p-ranav/binary_log"
LANGUAGES C CXX
)
docs_early_return()
include(cmake/project-is-top-level.cmake)
include(cmake/variables.cmake)
# ---- Declare library ----
add_library(binary_log_binary_log INTERFACE)
add_library(binary_log::binary_log ALIAS binary_log_binary_log)
set_property(
TARGET binary_log_binary_log PROPERTY
EXPORT_NAME binary_log
)
target_include_directories(
binary_log_binary_log ${warning_guard}
INTERFACE
"$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/include>"
)
target_link_libraries(binary_log_binary_log INTERFACE)
target_compile_features(binary_log_binary_log INTERFACE cxx_std_20)
# ---- Install rules ----
if(NOT CMAKE_SKIP_INSTALL_RULES)
include(cmake/install-rules.cmake)
endif()
# ---- Unpacker ----
if(PROJECT_IS_TOP_LEVEL)
option(BUILD_UNPACKER "Build unpacker tree." ON)
if(BUILD_UNPACKER)
add_subdirectory(tools)
endif()
endif()
# ---- Benchmarks ----
if(PROJECT_IS_TOP_LEVEL)
option(BUILD_BENCHMARKS "Build benchmarks tree." "${BINARY_LOG_DEVELOPER_MODE}")
if(BUILD_BENCHMARKS)
add_subdirectory(benchmark)
endif()
endif()
# ---- Examples ----
if(PROJECT_IS_TOP_LEVEL)
option(BUILD_EXAMPLES "Build examples tree." "${BINARY_LOG_DEVELOPER_MODE}")
if(BUILD_EXAMPLES)
add_subdirectory(examples)
endif()
endif()
# ---- Developer mode ----
if(NOT BINARY_LOG_DEVELOPER_MODE)
return()
elseif(NOT PROJECT_IS_TOP_LEVEL)
message(
AUTHOR_WARNING
"Developer mode is intended for developers of binary_log"
)
endif()
include(cmake/dev-mode.cmake)