retro-rpg/app/CMakeLists.txt

13 lines
224 B
CMake

add_executable(game
main.c
)
set_default_target_options(game)
target_include_directories(game PUBLIC include)
target_link_libraries(game PRIVATE
LibXml2::LibXml2
SDL2::SDL2
SDL2::SDL2main
SDL2_image::SDL2_image
)