From 7cf5cfcf7775e5582dda5b48ec0beee8e7d85161 Mon Sep 17 00:00:00 2001 From: Enrico Seiler Date: Tue, 1 Apr 2025 15:53:50 +0200 Subject: [PATCH] [INFRA] Set default SEQAN3_GENERATE_SNIPPETS to OFF --- test/analyse/CMakeLists.txt | 2 -- test/snippet/CMakeLists.txt | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/test/analyse/CMakeLists.txt b/test/analyse/CMakeLists.txt index f75b1e4d5e..7991e93950 100644 --- a/test/analyse/CMakeLists.txt +++ b/test/analyse/CMakeLists.txt @@ -9,8 +9,6 @@ include (../seqan3-test.cmake) enable_testing () -option (SEQAN3_GENERATE_SNIPPETS "" OFF) - add_subdirectory (../performance performance) add_subdirectory (../snippet snippet) add_subdirectory (../unit unit) diff --git a/test/snippet/CMakeLists.txt b/test/snippet/CMakeLists.txt index 55f8b26e76..a7f2e38bb8 100644 --- a/test/snippet/CMakeLists.txt +++ b/test/snippet/CMakeLists.txt @@ -11,7 +11,7 @@ include (../cmake/diagnostics/list_unused_snippets.cmake) CPMGetPackage (googletest) option (SEQAN3_GENERATE_SNIPPETS "Whether seqan3 snippets should be generated and overwritten within the source tree." - ON) + OFF) add_library (snippet_main snippet_main.cpp) target_link_libraries (snippet_main PUBLIC seqan3::test gtest)