1
0
mirror of https://github.com/lefticus/6502-cpp.git synced 2024-05-31 19:41:33 +00:00
6502-cpp/examples/simple_game/CMakeLists.txt
2021-06-10 21:08:27 -06:00

12 lines
277 B
CMake

# Note: this is compiling for the host OS, so not really useful
# but it is handy as
add_executable(game game.cpp geometry.hpp)
target_link_libraries(
game
PRIVATE project_options
project_warnings)
target_compile_options(game PRIVATE -Wno-volatile)