From cce3f7572299ada87e788dbbf71b598216291a92 Mon Sep 17 00:00:00 2001 From: Chuck Walbourn Date: Fri, 27 May 2022 17:20:11 -0700 Subject: [PATCH] CMake updated to require clients use C++11 --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index ae1cdb3..657e44c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -32,6 +32,8 @@ target_include_directories(${PROJECT_NAME} INTERFACE $ $) +target_compile_features(${PROJECT_NAME} PUBLIC cxx_std_11) + #--- Package include(CMakePackageConfigHelpers)