mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 03:02:30 +00:00
28 lines
388 B
CMake
28 lines
388 B
CMake
file(GLOB PRIVATE_SOURCES "*.cpp")
|
|
|
|
add_library(ui STATIC
|
|
${PRIVATE_SOURCES}
|
|
)
|
|
|
|
target_include_directories(ui
|
|
PRIVATE
|
|
${CMAKE_SOURCE_DIR}/src
|
|
)
|
|
|
|
target_link_libraries(ui
|
|
PRIVATE
|
|
client
|
|
console
|
|
db
|
|
event
|
|
glue
|
|
gx
|
|
math
|
|
model
|
|
net
|
|
util
|
|
PUBLIC
|
|
common
|
|
storm
|
|
tempest
|
|
)
|