1
0
mirror of https://github.com/lefticus/6502-cpp.git synced 2024-06-16 20:29:29 +00:00
6502-cpp/CMakeLists.txt

11 lines
306 B
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.5)
project(x86-to-6502)
if(CMAKE_COMPILER_IS_GNUCC)
add_definitions(-Wall -Wextra -Wconversion -Wshadow -Wnon-virtual-dtor -Wold-style-cast -Wcast-align -Wcast-qual -Wunused -Woverloaded-virtual -pedantic -std=c++14)
endif()
add_executable(x86-to-6502 src/main.cpp)