-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
127 lines (113 loc) · 2.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
cmake_minimum_required(VERSION 3.20)
project(wheels)
option(WHEELS_BUILD_TESTS "Include tests" ON)
option(WHEELS_BUILD_BENCHES "Include benchmarks" ON)
add_subdirectory(ext)
add_subdirectory(natvis)
add_library(wheels INTERFACE)
target_include_directories(wheels
INTERFACE
${CMAKE_CURRENT_LIST_DIR}/include
)
target_link_libraries(wheels
INTERFACE
wyhash
)
target_sources(wheels
INTERFACE
${NATVIS_SOURCES}
)
if(WHEELS_BUILD_TESTS)
add_subdirectory(tests)
add_executable(wheels_test ${TESTS_SOURCES})
target_compile_features(wheels_test
PUBLIC
cxx_std_20
)
if(MSVC)
# From cppbestpractices
target_compile_options(wheels_test
PRIVATE
/permissive-
/W4
/w14242
/w14254
/w14263
/w14265
/w14287
/we4289
/w14296
/w14311
/w14545
/w14546
/w14547
/w14549
/w14555
/w14619
/w14640
/w14826
/w14905
/w14906
/w14928
)
target_compile_definitions(wheels_test PRIVATE "_CRTDBG_MAP_ALLOC")
else()
target_compile_options(wheels_test
PRIVATE
-pedantic
-Wall
-Wextra
-Wunused
-Wno-missing-field-initializers
-Wno-self-assign-overloaded
)
endif() # NOT MSVC
target_link_libraries(wheels_test PRIVATE wheels Catch2WithMain)
endif()
if(WHEELS_BUILD_BENCHES)
add_executable(wheels_bench
${CMAKE_CURRENT_LIST_DIR}/bench/main.cpp
)
target_compile_features(wheels_bench
PUBLIC
cxx_std_20
)
if(MSVC)
# From cppbestpractices
target_compile_options(wheels_bench
PRIVATE
/permissive-
/W4
/w14242
/w14254
/w14263
/w14265
/w14287
/we4289
/w14296
/w14311
/w14545
/w14546
/w14547
/w14549
/w14555
/w14619
/w14640
/w14826
/w14905
/w14906
/w14928
)
# Cmake uses /Ob1 for some reason so we have to override to match Release
set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} /Ob2")
else()
target_compile_options(wheels_bench
PRIVATE
-pedantic
-Wall
-Wextra
-Wunused
)
endif() # NOT MSVC
target_link_libraries(wheels_bench PRIVATE wheels benchmark::benchmark)
endif()