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 ef162f2 commit f69c0a3Copy full SHA for f69c0a3
CMakeLists.txt
@@ -2,7 +2,8 @@ cmake_minimum_required(VERSION 3.14)
2
project(cddp)
3
4
set(CMAKE_CXX_STANDARD 17) # Enforce C++17 as the minimum standard
5
-set(CMAKE_CXX_STANDARD_REQUIRED ON)
+set(CMAKE_CXX_STANDARD_REQUIRED ON) # Enforce C++17 as the minimum standard
6
+set(ABSL_PROPAGATE_CXX_STD ON) # Enforce C++17 for absl
7
8
# Set the default build type to Release
9
set(CMAKE_BUILD_TYPE "Release")
0 commit comments