mirror of
https://github.com/fabiangreffrath/woof.git
synced 2025-08-03 04:37:39 -04:00
15 lines
396 B
CMake
15 lines
396 B
CMake
include(WoofSettings)
|
|
|
|
add_library(setup STATIC
|
|
execute.c execute.h
|
|
mainmenu.c
|
|
multiplayer.c multiplayer.h)
|
|
|
|
target_woof_settings(setup)
|
|
|
|
target_include_directories(setup
|
|
INTERFACE "."
|
|
PRIVATE "../src/" "${CMAKE_CURRENT_BINARY_DIR}/../")
|
|
|
|
target_link_libraries(setup textscreen SDL2::SDL2)
|