Skip to content

Commit

Permalink
build/cmake: default tests and sanitizers to off
Browse files Browse the repository at this point in the history
  • Loading branch information
Will committed Oct 26, 2024
1 parent 5d4a0d9 commit 3d9c2ce
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ project(
option(BUILD_LIB "Create targets for the watcher-c libraries" ON)
option(BUILD_BIN "Create targets for the CLI binaries" ON)
option(BUILD_HDR "Create targets for the headers (both the C++ single-header library and the watcher-c library header)" ON)
option(BUILD_TESTING "Create targets for the test programs" ON)
option(BUILD_SAN "Mega-option to allow sanitizers" ON)
option(BUILD_ASAN "Create targets address-sanitized libraries and binaries" ON)
option(BUILD_MSAN "Create targets memory-sanitized libraries and binaries" ON)
option(BUILD_TSAN "Create targets thread-sanitized libraries and binaries" ON)
option(BUILD_UBSAN "Create targets undefined-behavior-sanitized libraries and binaries" ON)
option(BUILD_TESTING "Create targets for the test programs" OFF)
option(BUILD_SAN "Mega-option to allow sanitizers" OFF)
option(BUILD_ASAN "Create targets address-sanitized libraries and binaries" OFF)
option(BUILD_MSAN "Create targets memory-sanitized libraries and binaries" OFF)
option(BUILD_TSAN "Create targets thread-sanitized libraries and binaries" OFF)
option(BUILD_UBSAN "Create targets undefined-behavior-sanitized libraries and binaries" OFF)

set(WTR_WATCHER_CXX_STD 17)

Expand Down

0 comments on commit 3d9c2ce

Please sign in to comment.