1
0
mirror of https://github.com/lefticus/6502-cpp.git synced 2024-06-02 02:41:33 +00:00

Fix build on OSX by telling CMake we require C++14, which is not enabled by default.

This commit is contained in:
Robin Degen 2017-07-04 17:02:43 +02:00
parent da8dcfe213
commit 9c9e6bf7ed

View File

@ -1,4 +1,7 @@
cmake_minimum_required(VERSION 3.5)
set (CMAKE_CXX_STANDARD 14)
project(x86-to-6502)
if(CMAKE_COMPILER_IS_GNUCC)