Don't set C++ standard in CMakeLists for tests

This commit is contained in:
Martin Hořeňovský
2022-10-28 16:01:51 +02:00
parent b56c474260
commit 82cec69e93
2 changed files with 0 additions and 15 deletions

View File

@@ -54,8 +54,6 @@ set(ALL_EXAMPLE_TARGETS
foreach( name ${ALL_EXAMPLE_TARGETS} )
target_link_libraries( ${name} Catch2 Catch2WithMain )
set_property(TARGET ${name} PROPERTY CXX_STANDARD 14)
set_property(TARGET ${name} PROPERTY CXX_EXTENSIONS OFF)
endforeach()