-
Notifications
You must be signed in to change notification settings - Fork 3
/
Config.cmake
34 lines (24 loc) · 892 Bytes
/
Config.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
# Enable address sanitizer.
set_option(ASAN OFF)
# Enable Cpp Check, if available.
set_option(CPP_CHECK OFF)
# Enable Clang tidy, if available.
set_option(CLANG_TIDY OFF)
# Enable Include-what-you-use, if available.
set_option(INCLUDE_WHAT_YOU_USE OFF)
# Enable Ccache, if available.
set_option(CCACHE OFF)
# Enable google Gtest testing platform.
set_option(GTEST_DOWNLOAD_IF_MISSING OFF)
# Enable Catch2 testing platform.
set_option(CATCH2_DOWNLOAD_IF_MISSING OFF)
# Enable gcovr for code coverage (not compatible MSVC), if available.
set_option(GCOVR OFF)
# Enable lcov for code coverage (not compatible MSVC), if available.
set_option(LCOV OFF)
# Use Conan package manager
set_option(CONAN_VERBOSE OFF)
# Use vcpkg package manager
set_option(VCPKG_VERBOSE OFF)
set_option_path(VCPKG_LOCATION "~/vcpkg/")
set_option(VCPKG_LOCAL_DOWNLOAD OFF) # will download in ./build/ directory