1
0
mirror of https://github.com/lefticus/6502-cpp.git synced 2024-06-16 20:29:29 +00:00
6502-cpp/examples/simple_game/CMakeLists.txt
2021-07-18 18:57:17 -06:00

12 lines
291 B
CMake

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