1
0
mirror of https://github.com/lefticus/6502-cpp.git synced 2024-06-26 00:29:30 +00:00
6502-cpp/examples/simple_game/CMakeLists.txt

12 lines
291 B
CMake
Raw Permalink Normal View History

2021-06-11 03:08:27 +00:00
# Note: this is compiling for the host OS, so not really useful
# but it is handy as a sanity check
2021-06-11 03:08:27 +00:00
add_executable(game game.cpp geometry.hpp)
target_link_libraries(
game
PRIVATE project_options
project_warnings)
target_compile_options(game PRIVATE -Wno-volatile)