From c83dc79357dcefb2aeaa361831842b884d231843 Mon Sep 17 00:00:00 2001 From: James Turner Date: Mon, 6 Apr 2020 10:44:23 +0100 Subject: [PATCH] Revert to C++11 for now, found an alternative solution. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 33eb6c2a..ba4f004f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -39,7 +39,7 @@ set(CMAKE_OSX_DEPLOYMENT_TARGET "10.9" CACHE STRING "Minimum OS X deployment ver # let's use & require C++11 - note these are only functional with CMake 3.1 # we do manual fallbacks for CMake 3.0 in the compilers section -set(CMAKE_CXX_STANDARD 14) +set(CMAKE_CXX_STANDARD 11) set(CMAKE_CXX_STANDARD_REQUIRED YES) # read 'version' file into a variable (stripping any newlines or spaces)