-
Notifications
You must be signed in to change notification settings - Fork 1
/
CMakeLists.txt
74 lines (62 loc) · 2.36 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
cmake_minimum_required(VERSION 3.16)
project(libadawata VERSION 0.0.1)
cmake_policy(SET CMP0077 NEW)
# cmake_policy(SET CMP0053 NEW) cmake_policy(SET CMP0010 NEW) cmake_policy(SET
# CMP0135 NEW) cmake_policy(SET CMP0091 NEW)
option(BUILD_TESTING "Enable the build of the tests" On)
option(BUILD_BENCHMARKS
"Enable the build of the benchmarking binaries. Will force BUILD_TESTING"
Off
)
option(
ENABLE_QUALITY_TESTS
"When running the tests, this will run the python quality tests. Requires a GUI"
Off
)
option(
ENABLE_CXX20
"Enable the use of C++20, otherwise only C++17 is supported and gsl::span will be used"
On
)
# Debug options
option(USE_TRACY "Enable tracy profiling of benchmark binaries" Off)
option(USE_ASAN "Use address sanitize" Off)
set(CMAKE_CXX_USE_RESPONSE_FILE_FOR_INCLUDES Off)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS ON)
message(STATUS "CMAKE_CXX_FLAGS_RELEASE ${CMAKE_CXX_FLAGS_RELEASE}")
# ##############################################################################
# Misc
# ##############################################################################
set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH})
# ##############################################################################
# Tracy
# ##############################################################################
if(USE_TRACY)
add_compile_definitions(TRACY_ENABLE)
add_compile_definitions(TRACY_NO_EXIT)
endif()
# ##############################################################################
# Sources
# ##############################################################################
add_subdirectory(cmake)
add_subdirectory(adwt)
# ##############################################################################
# Testing
# ##############################################################################
if(BUILD_BENCHMARKS)
set(BUILD_TESTING ON)
endif()
if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME)
# include(CTest)
enable_testing()
endif()
if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME AND BUILD_TESTING)
add_subdirectory(tests)
set_property(GLOBAL PROPERTY CTEST_TARGETS_ADDED 0)
endif()
# #
# ##############################################################################
# # Benchmarks #
# ##############################################################################
# if(BUILD_BENCHMARKS) add_subdirectory(benchmarks) endif()