-
Notifications
You must be signed in to change notification settings - Fork 0
/
ProjectOptions.cmake
199 lines (174 loc) · 6.6 KB
/
ProjectOptions.cmake
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
include(cmake/SystemLink.cmake)
include(CMakeDependentOption)
include(CheckCXXCompilerFlag)
macro(stmesh_supports_sanitizers)
if((CMAKE_CXX_COMPILER_ID MATCHES ".*Clang.*" OR CMAKE_CXX_COMPILER_ID MATCHES ".*GNU.*") AND NOT WIN32)
set(SUPPORTS_UBSAN ON)
else()
message(WARNING "Undefined behavior sanitizer is not supported on this platform")
set(SUPPORTS_UBSAN OFF)
endif()
if((CMAKE_CXX_COMPILER_ID MATCHES ".*Clang.*" OR CMAKE_CXX_COMPILER_ID MATCHES ".*GNU.*") AND WIN32)
message(WARNING "Address sanitizer is not supported on this platform")
set(SUPPORTS_ASAN OFF)
else()
set(SUPPORTS_ASAN ON)
endif()
endmacro()
macro(stmesh_setup_options)
option(stmesh_ENABLE_HARDENING "Enable hardening" ON)
option(stmesh_ENABLE_COVERAGE "Enable coverage reporting" OFF)
cmake_dependent_option(
stmesh_ENABLE_GLOBAL_HARDENING
"Attempt to push hardening options to built dependencies"
ON
stmesh_ENABLE_HARDENING
OFF)
stmesh_supports_sanitizers()
if(NOT PROJECT_IS_TOP_LEVEL OR stmesh_PACKAGING_MAINTAINER_MODE)
option(stmesh_ENABLE_IPO "Enable IPO/LTO" OFF)
option(stmesh_WARNINGS_AS_ERRORS "Treat Warnings As Errors" OFF)
option(stmesh_ENABLE_USER_LINKER "Enable user-selected linker" OFF)
option(stmesh_ENABLE_SANITIZER_ADDRESS "Enable address sanitizer" OFF)
option(stmesh_ENABLE_SANITIZER_LEAK "Enable leak sanitizer" OFF)
option(stmesh_ENABLE_SANITIZER_UNDEFINED "Enable undefined sanitizer" OFF)
option(stmesh_ENABLE_SANITIZER_THREAD "Enable thread sanitizer" OFF)
option(stmesh_ENABLE_SANITIZER_MEMORY "Enable memory sanitizer" OFF)
option(stmesh_ENABLE_UNITY_BUILD "Enable unity builds" OFF)
option(stmesh_ENABLE_CLANG_TIDY "Enable clang-tidy" OFF)
option(stmesh_ENABLE_CPPCHECK "Enable cpp-check analysis" OFF)
option(stmesh_ENABLE_PCH "Enable precompiled headers" OFF)
option(stmesh_ENABLE_CACHE "Enable ccache" OFF)
option(stmesh_ENABLE_DOXYGEN "Enable doxygen" OFF)
else()
option(stmesh_ENABLE_IPO "Enable IPO/LTO" ON)
option(stmesh_WARNINGS_AS_ERRORS "Treat Warnings As Errors" ON)
option(stmesh_ENABLE_USER_LINKER "Enable user-selected linker" OFF)
option(stmesh_ENABLE_SANITIZER_ADDRESS "Enable address sanitizer" ${SUPPORTS_ASAN})
option(stmesh_ENABLE_SANITIZER_LEAK "Enable leak sanitizer" OFF)
option(stmesh_ENABLE_SANITIZER_UNDEFINED "Enable undefined sanitizer" ${SUPPORTS_UBSAN})
option(stmesh_ENABLE_SANITIZER_THREAD "Enable thread sanitizer" OFF)
option(stmesh_ENABLE_SANITIZER_MEMORY "Enable memory sanitizer" OFF)
option(stmesh_ENABLE_UNITY_BUILD "Enable unity builds" OFF)
option(stmesh_ENABLE_CLANG_TIDY "Enable clang-tidy" ON)
option(stmesh_ENABLE_CPPCHECK "Enable cpp-check analysis" ON)
option(stmesh_ENABLE_PCH "Enable precompiled headers" OFF)
option(stmesh_ENABLE_CACHE "Enable ccache" ON)
option(stmesh_ENABLE_PROFILING "Enable profiling" OFF)
endif()
if(NOT PROJECT_IS_TOP_LEVEL)
mark_as_advanced(
stmesh_ENABLE_IPO
stmesh_WARNINGS_AS_ERRORS
stmesh_ENABLE_USER_LINKER
stmesh_ENABLE_SANITIZER_ADDRESS
stmesh_ENABLE_SANITIZER_LEAK
stmesh_ENABLE_SANITIZER_UNDEFINED
stmesh_ENABLE_SANITIZER_THREAD
stmesh_ENABLE_SANITIZER_MEMORY
stmesh_ENABLE_UNITY_BUILD
stmesh_ENABLE_CLANG_TIDY
stmesh_ENABLE_CPPCHECK
stmesh_ENABLE_COVERAGE
stmesh_ENABLE_PCH
stmesh_ENABLE_CACHE)
endif()
set(FLOATING_POINT_TYPE "double" CACHE STRING "Floating point type to use")
endmacro()
macro(stmesh_global_options)
if(stmesh_ENABLE_IPO)
include(cmake/InterproceduralOptimization.cmake)
stmesh_enable_ipo()
endif()
stmesh_supports_sanitizers()
if(stmesh_ENABLE_HARDENING AND stmesh_ENABLE_GLOBAL_HARDENING)
include(cmake/Hardening.cmake)
if(NOT SUPPORTS_UBSAN
OR stmesh_ENABLE_SANITIZER_UNDEFINED
OR stmesh_ENABLE_SANITIZER_ADDRESS
OR stmesh_ENABLE_SANITIZER_THREAD
OR stmesh_ENABLE_SANITIZER_LEAK)
set(ENABLE_UBSAN_MINIMAL_RUNTIME FALSE)
else()
set(ENABLE_UBSAN_MINIMAL_RUNTIME TRUE)
endif()
message("${stmesh_ENABLE_HARDENING} ${ENABLE_UBSAN_MINIMAL_RUNTIME} ${stmesh_ENABLE_SANITIZER_UNDEFINED}")
stmesh_enable_hardening(stmesh_options ON ${ENABLE_UBSAN_MINIMAL_RUNTIME})
endif()
endmacro()
macro(stmesh_local_options)
if(PROJECT_IS_TOP_LEVEL)
include(cmake/StandardProjectSettings.cmake)
endif()
add_library(stmesh_warnings INTERFACE)
add_library(stmesh_options INTERFACE)
include(cmake/CompilerWarnings.cmake)
stmesh_set_project_warnings(
stmesh_warnings
${stmesh_WARNINGS_AS_ERRORS}
""
""
""
"")
if(stmesh_ENABLE_USER_LINKER)
include(cmake/Linker.cmake)
stmesh_configure_linker(stmesh_options)
endif()
include(cmake/Sanitizers.cmake)
stmesh_enable_sanitizers(
stmesh_options
${stmesh_ENABLE_SANITIZER_ADDRESS}
${stmesh_ENABLE_SANITIZER_LEAK}
${stmesh_ENABLE_SANITIZER_UNDEFINED}
${stmesh_ENABLE_SANITIZER_THREAD}
${stmesh_ENABLE_SANITIZER_MEMORY})
set_target_properties(stmesh_options PROPERTIES UNITY_BUILD ${stmesh_ENABLE_UNITY_BUILD})
if(stmesh_ENABLE_PCH)
target_precompile_headers(
stmesh_options
INTERFACE
<vector>
<string>
<utility>)
endif()
if(stmesh_ENABLE_CACHE)
include(cmake/Cache.cmake)
stmesh_enable_cache()
endif()
include(cmake/StaticAnalyzers.cmake)
if(stmesh_ENABLE_CLANG_TIDY)
stmesh_enable_clang_tidy(stmesh_options ${stmesh_WARNINGS_AS_ERRORS})
endif()
if(stmesh_ENABLE_CPPCHECK)
stmesh_enable_cppcheck(${stmesh_WARNINGS_AS_ERRORS} "" # override cppcheck options
)
endif()
if(stmesh_ENABLE_COVERAGE)
include(cmake/Tests.cmake)
stmesh_enable_coverage(stmesh_options)
endif()
if(stmesh_WARNINGS_AS_ERRORS)
check_cxx_compiler_flag("-Wl,--fatal-warnings" LINKER_FATAL_WARNINGS)
if(LINKER_FATAL_WARNINGS)
# This is not working consistently, so disabling for now
# target_link_options(stmesh_options INTERFACE -Wl,--fatal-warnings)
endif()
endif()
if(stmesh_ENABLE_HARDENING AND NOT stmesh_ENABLE_GLOBAL_HARDENING)
include(cmake/Hardening.cmake)
if(NOT SUPPORTS_UBSAN
OR stmesh_ENABLE_SANITIZER_UNDEFINED
OR stmesh_ENABLE_SANITIZER_ADDRESS
OR stmesh_ENABLE_SANITIZER_THREAD
OR stmesh_ENABLE_SANITIZER_LEAK)
set(ENABLE_UBSAN_MINIMAL_RUNTIME FALSE)
else()
set(ENABLE_UBSAN_MINIMAL_RUNTIME TRUE)
endif()
stmesh_enable_hardening(stmesh_options OFF ${ENABLE_UBSAN_MINIMAL_RUNTIME})
endif()
if (stmesh_ENABLE_DOXYGEN)
include(cmake/Doxygen.cmake)
stmesh_enable_doxygen("")
endif()
endmacro()