14 lines
228 B
CMake
14 lines
228 B
CMake
add_executable(game
|
|
main.c
|
|
)
|
|
set_default_target_options(game)
|
|
target_include_directories(game PUBLIC include)
|
|
|
|
target_link_libraries(game PRIVATE
|
|
m
|
|
LibXml2::LibXml2
|
|
SDL2::SDL2
|
|
SDL2::SDL2main
|
|
SDL2_image::SDL2_image
|
|
)
|