From e529eeb5404da50c4027d17f37cbc65c64004f6b Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Thu, 29 Jul 2021 14:54:00 +0200 Subject: [PATCH] require C++14 for string literals --- cmake/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt index e60deb9593..8fbc049495 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -18,7 +18,7 @@ ################################################################################ cmake_minimum_required(VERSION 3.1.3) -set(CMAKE_CXX_STANDARD 11) +set(CMAKE_CXX_STANDARD 14) set(CMAKE_CXX_STANDARD_REQUIRED ON) # not necessary, but encouraged project (IfcOpenShell VERSION 0.6.0)