File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 33
44# Project
55Language : Cpp
6- Standard : c++17
6+ Standard : c++20
77ColumnLimit : 120
88
99# Indentation
Original file line number Diff line number Diff line change 1212 "hidden" : true ,
1313 "cacheVariables" : {
1414 "CMAKE_CXX_EXTENSIONS" : " OFF" ,
15- "CMAKE_CXX_STANDARD" : " 17 " ,
15+ "CMAKE_CXX_STANDARD" : " 20 " ,
1616 "CMAKE_CXX_STANDARD_REQUIRED" : " ON"
1717 }
1818 },
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ add_library(Core
55 src/Core/Lib.cpp
66)
77target_include_directories (Core PUBLIC "$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR} /library/include>" )
8- target_compile_features (Core PUBLIC cxx_std_17 )
8+ target_compile_features (Core PUBLIC cxx_std_20 )
99
1010include (GenerateExportHeader)
1111generate_export_header(Core
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ set(CMAKE_CATCH_DISCOVER_TESTS_DISCOVERY_MODE PRE_TEST)
77
88add_executable (CoreTests Tests.cpp)
99target_link_libraries (CoreTests PRIVATE Core Catch2::Catch2WithMain)
10- target_compile_features (CoreTests PRIVATE cxx_std_17 )
10+ target_compile_features (CoreTests PRIVATE cxx_std_20 )
1111
1212# ---- Tests ----
1313
You can’t perform that action at this time.
0 commit comments