Skip to content

Commit 79fb9c3

Browse files
committed
Reapply CMAKE.SKIP_TESTS after Beman Standard update
1 parent ec9fb07 commit 79fb9c3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ option(BEMAN_ITERATOR_INTERFACE_USE_DEDUCING_THIS
2727
"Make use of C++23 \"deducing this\" feature (P0847R7). Turn this off for non-conforming compilers."
2828
${COMPILER_SUPPORTS_DEDUCING_THIS})
2929

30-
option(BEMAN_ITERATOR_INTERFACE_BUILD_TESTING
30+
option(BEMAN_ITERATOR_INTERFACE_BUILD_TESTS
3131
"Enable building tests and test infrastructure. Default: ON. Values: {ON, OFF}." ${PROJECT_IS_TOP_LEVEL})
3232

3333
option(BEMAN_ITERATOR_INTERFACE_BUILD_EXAMPLES
@@ -45,7 +45,7 @@ configure_file(
4545
"${PROJECT_SOURCE_DIR}/include/beman/iterator_interface/config.hpp.in"
4646
"${PROJECT_BINARY_DIR}/include/beman/iterator_interface/config.hpp" @ONLY)
4747

48-
if(BEMAN_ITERATOR_INTERFACE_BUILD_TESTING)
48+
if(BEMAN_ITERATOR_INTERFACE_BUILD_TESTS)
4949
# Fetch GoogleTest
5050
FetchContent_Declare(
5151
googletest
@@ -81,7 +81,7 @@ target_include_directories(
8181
add_subdirectory(src/beman/iterator_interface)
8282
add_subdirectory(include/beman/iterator_interface)
8383

84-
if(BEMAN_ITERATOR_INTERFACE_BUILD_TESTING)
84+
if(BEMAN_ITERATOR_INTERFACE_BUILD_TESTS)
8585
add_subdirectory(tests/beman/iterator_interface)
8686
endif()
8787

0 commit comments

Comments
 (0)