1
0
mirror of https://github.com/lefticus/6502-cpp.git synced 2024-09-27 15:58:32 +00:00

Merge pull request #7 from aeon-dev/fix_osx_build

Fix build on OSX by telling CMake we require C++14
This commit is contained in:
Jason Turner 2017-07-29 16:05:25 -06:00 committed by GitHub
commit ba5fa6c978

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)