From 9c9e6bf7ed1db7a759e3772bb6e1eb116c386944 Mon Sep 17 00:00:00 2001 From: Robin Degen Date: Tue, 4 Jul 2017 17:02:43 +0200 Subject: [PATCH] Fix build on OSX by telling CMake we require C++14, which is not enabled by default. --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9134a01..0040ab1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,7 @@ cmake_minimum_required(VERSION 3.5) + +set (CMAKE_CXX_STANDARD 14) + project(x86-to-6502) if(CMAKE_COMPILER_IS_GNUCC)