thunderbrew/src/gameui/CMakeLists.txt

29 lines
409 B
Text
Raw Normal View History

2025-03-19 23:28:47 +04:00
file(GLOB PRIVATE_SOURCES "*.cpp")
add_library(gameui STATIC
${PRIVATE_SOURCES}
)
target_include_directories(gameui
PRIVATE
${CMAKE_SOURCE_DIR}/src
)
target_link_libraries(gameui
PRIVATE
client
clientobject
console
event
glue
gx
math
model
ui
util
PUBLIC
common
storm
tempest
)