1
0
Fork 0
mirror of https://github.com/TheLartians/ModernCppStarter.git synced 2025-09-03 23:50:53 +02:00

fix merge problems

prevent testing the cxxopts lib
This commit is contained in:
ClausKlein 2021-02-27 12:53:02 +01:00
parent 9d1c7413f0
commit 1b3755e6e5
5 changed files with 7 additions and 8 deletions

View file

@ -42,7 +42,7 @@ file(GLOB sources CONFIGURE_DEPENDS source/*.cpp)
add_executable(GreeterTests ${sources})
target_link_libraries(GreeterTests doctest::doctest Greeter::Greeter)
set_target_properties(GreeterTests PROPERTIES CXX_STANDARD 17)
set_target_properties(GreeterTests PROPERTIES CXX_STANDARD ${CMAKE_CXX_STANDARD})
# enable compiler warnings
if(NOT TEST_INSTALLED_VERSION)