From 420aa7fecf7c48d32ac40ae7bb30e28ed8543ff5 Mon Sep 17 00:00:00 2001 From: Ben Deane Date: Tue, 20 Jan 2026 11:52:11 -0700 Subject: [PATCH] :white_check_mark: Enable CTest Problem: - `CTest` is not included upstream any more. Solution: - `include(CTest)` in the top-level `CMakeLists.txt`. --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 30748ce..911999b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,6 +17,7 @@ target_include_directories(safe_arithmetic INTERFACE include) target_link_libraries_system(safe_arithmetic INTERFACE boost_mp11) if(PROJECT_IS_TOP_LEVEL) + include(CTest) add_docs(docs) clang_tidy_interface(safe_arithmetic) add_subdirectory(test)