Files
guru/dev-libs/mcl/files/mcl-0.1.13-build-tests-only-when-requested.patch
Pavel Sobolev f385307ace dev-libs/mcl: new package, add 0.1.13
Signed-off-by: Pavel Sobolev <contact@paveloom.dev>
2025-07-12 16:43:56 +03:00

30 lines
724 B
Diff

From: Pavel Sobolev <contact@paveloom.dev>
Subject: [PATCH] Build tests only when requested.
Signed-off-by: Pavel Sobolev <contact@paveloom.dev>
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -102,8 +102,10 @@ endif()
# Project files
+include(CTest)
+
add_subdirectory(src)
-if (TARGET Catch2::Catch2 AND MASTER_PROJECT)
+if (BUILD_TESTING)
add_subdirectory(tests)
endif()
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -10,7 +10,6 @@ target_include_directories(mcl-tests PUBLIC .)
target_compile_options(mcl-tests PRIVATE ${STAMINA_CXX_FLAGS})
target_link_libraries(mcl-tests PRIVATE Catch2::Catch2WithMain mcl)
-include(CTest)
include(Catch)
catch_discover_tests(mcl-tests)
enable_testing()