-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathCMakeLists.txt
119 lines (102 loc) · 3.4 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
#
# Copyright (c) 2019-2020 Kris Jusiak (kris at jusiak dot net)
#
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#
cmake_minimum_required(VERSION 3.21...3.25)
project(
ut
VERSION 2.3.0
LANGUAGES CXX
)
if(NOT DEFINED CMAKE_CXX_STANDARD)
set(CMAKE_CXX_STANDARD
20
CACHE STRING "Default value for CXX_STANDARD property of targets."
)
option(CMAKE_CXX_STANDARD_REQUIRED "Default value for CXX_STANDARD_REQUIRED property of targets." YES)
option(CMAKE_CXX_EXTENSIONS "Default value for CXX_EXTENSIONS property of targets." NO)
endif()
option(BOOST_UT_ENABLE_MEMCHECK "Run the unit tests and examples under valgrind if it is found" OFF)
option(BOOST_UT_ENABLE_COVERAGE "Run coverage" OFF)
option(BOOST_UT_ENABLE_SANITIZERS "Build with sanitizers" OFF)
option(BOOST_UT_BUILD_BENCHMARKS "Build the benchmarks" OFF)
option(BOOST_UT_BUILD_EXAMPLES "Build the examples" ${PROJECT_IS_TOP_LEVEL})
option(BOOST_UT_BUILD_TESTS "Build the tests" ${PROJECT_IS_TOP_LEVEL})
option(BOOST_UT_ENABLE_INSTALL "Enable install targets" ${PROJECT_IS_TOP_LEVEL})
option(BOOST_UT_USE_WARNINGS_AS_ERORS "Build the tests" ${PROJECT_IS_TOP_LEVEL})
option(BOOST_UT_DISABLE_MODULE "Disable ut module" OFF)
add_library(ut INTERFACE)
target_include_directories(ut INTERFACE $<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/include>)
target_compile_features(ut INTERFACE cxx_std_20)
if(BOOST_UT_USE_WARNINGS_AS_ERORS)
include(cmake/WarningsAsErrors.cmake)
endif()
add_custom_target(style COMMENT "Running clang-format")
add_custom_command(
TARGET style
POST_BUILD
COMMAND find ${CMAKE_CURRENT_LIST_DIR}/benchmark ${CMAKE_CURRENT_LIST_DIR}/example ${CMAKE_CURRENT_LIST_DIR}/include
${CMAKE_CURRENT_LIST_DIR}/test -iname "*.hpp" -or -iname "*.cpp" | xargs clang-format -i
COMMENT "Running clang-format"
)
if(BOOST_UT_ENABLE_COVERAGE)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} --coverage")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -ggdb3 -O0")
endif()
if(BOOST_UT_ENABLE_SANITIZERS)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O0 -g -fno-omit-frame-pointer
-fsanitize=address,leak,undefined"
)
endif()
if(BOOST_UT_DISABLE_MODULE)
target_compile_definitions(ut INTERFACE BOOST_UT_DISABLE_MODULE)
endif()
if(NOT TARGET Boost::ut)
add_library(Boost::ut ALIAS ut)
endif()
include(GNUInstallDirs)
include(CMakePackageConfigHelpers)
install(
FILES include/boost/ut.hpp
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/boost
)
install(
TARGETS ut
EXPORT ut_Targets
INCLUDES DESTINATION include
)
install(
EXPORT ut_Targets
FILE utConfig.cmake
NAMESPACE Boost::
DESTINATION lib/cmake/ut
)
write_basic_package_version_file(
"utConfigVersion.cmake"
VERSION ${PROJECT_VERSION}
COMPATIBILITY SameMajorVersion
ARCH_INDEPENDENT
)
install(
FILES "${PROJECT_BINARY_DIR}/utConfigVersion.cmake"
DESTINATION lib/cmake/ut
)
if(EMSCRIPTEN)
set(CMAKE_EXECUTABLE_SUFFIX ".js")
target_link_options(ut INTERFACE "SHELL:-s ALLOW_MEMORY_GROWTH=1" "SHELL:-s EXIT_RUNTIME=1" -fwasm-exceptions -g)
target_compile_options(ut INTERFACE -fwasm-exceptions -g)
endif()
# Note: now we can use the target Boost::ut
include(cmake/AddCustomCommandOrTest.cmake)
if(BOOST_UT_BUILD_BENCHMARKS)
add_subdirectory(benchmark)
endif()
if(BOOST_UT_BUILD_EXAMPLES)
add_subdirectory(example)
endif()
if(BOOST_UT_BUILD_TESTS)
enable_testing()
add_subdirectory(test)
endif()