From 3d9c2ce0b44ecbc8b1922b1a7b2b898831d92a3e Mon Sep 17 00:00:00 2001 From: Will Date: Sat, 26 Oct 2024 12:03:10 -0400 Subject: [PATCH] build/cmake: default tests and sanitizers to off --- CMakeLists.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3e99050..6adcb7c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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)