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

back to c++17

This commit is contained in:
ClausKlein 2021-02-15 21:01:56 +01:00
parent e537d11f1d
commit b727eadfc7
3 changed files with 3 additions and 3 deletions

View file

@ -25,7 +25,7 @@ option(BUILD_SHARED_LIBS "Create shared libraries if ON" YES)
# XXX endif()
if(NOT DEFINED CMAKE_CXX_STANDARD)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS NO)
endif()