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