From a4ffd43b1521aacb061df27c1b3e0b85a98041ea Mon Sep 17 00:00:00 2001 From: Chad Condon Date: Thu, 9 Jul 2026 20:39:45 -0700 Subject: [PATCH] Remove unused MUTINY_BUILD_UNIT_TESTING option MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This cmake_dependent_option was never referenced anywhere in the build system — MUTINY_BUILD_TESTING is the variable that gates test compilation. --- CMakeLists.txt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3bfd5a575..6874645c4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,10 +18,6 @@ cmake_dependent_option(MUTINY_BUILD_TESTING "Build tests for mutiny" ${PROJECT_IS_TOP_LEVEL} "BUILD_TESTING;EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/tests" OFF) -cmake_dependent_option(MUTINY_BUILD_UNIT_TESTING "Build unit tests for mutiny" - ${PROJECT_IS_TOP_LEVEL} - "MUTINY_BUILD_TESTING;NOT BUILD_SHARED_LIBS" - OFF) cmake_dependent_option(MUTINY_EXAMPLES "Compile and make examples?" ON "PROJECT_IS_TOP_LEVEL;EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/examples"