9 lines
194 B
CMake
9 lines
194 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)
|