-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCMakeLists.txt
29 lines (27 loc) · 1012 Bytes
/
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
cmake_minimum_required(VERSION 3.20 FATAL_ERROR)
project(CPT)
set (CMAKE_CXX_STANDARD 20)
if (CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(
# warnings
-Wall -Wextra -Wshadow -Wfloat-equal -Wconversion
-Wno-sign-conversion # we often compare int to size_t
-Wvla # warn for variable length arrays
# sanitizers
-fsanitize=address,undefined
-fno-omit-frame-pointer
-fno-sanitize-recover=all
# debug mode of STL
# -D_GLIBCXX_DEBUG # set debug macro for libstdc++ (gcc std lib)
# -D_LIBCPP_DEBUG # set debug macro for libc++ (clang std lib)
)
add_link_options(
-fsanitize=address,undefined
-fno-omit-frame-pointer
# to fix GCC ASAN with certain linux kernel versions
# unfortunately the current devcontainer needs this
# see: https://github.com/google/sanitizers/issues/856
-no-pie
)
endif()
add_executable(main main.cpp)