From 8e59872681f47442cdb154e93c7e210c102748f3 Mon Sep 17 00:00:00 2001 From: David Chisnall Date: Mon, 25 Nov 2019 12:01:47 +0000 Subject: [PATCH] Require C++14 in CMake. --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 315c9e7..1f5226a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,6 +22,8 @@ endif() # Build configuration add_definitions( -DGNUSTEP -D__OBJC_RUNTIME_INTERNAL__=1) +set(CMAKE_CXX_STANDARD 14) + set(libobjc_ASM_SRCS block_trampolines.S objc_msgSend.S)