We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c200dd3 commit 8e2c7efCopy full SHA for 8e2c7ef
test_security/CMakeLists.txt
@@ -2,9 +2,10 @@ cmake_minimum_required(VERSION 3.7)
2
3
project(test_security)
4
5
-# Default to C++14
+# Default to C++17
6
if(NOT CMAKE_CXX_STANDARD)
7
- set(CMAKE_CXX_STANDARD 14)
+ set(CMAKE_CXX_STANDARD 17)
8
+ set(CMAKE_CXX_STANDARD_REQUIRED ON)
9
endif()
10
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
11
add_compile_options(-Wall -Wextra -Wpedantic)
0 commit comments