mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2026-02-04 09:09:09 +00:00
28 lines
409 B
CMake
28 lines
409 B
CMake
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
|
|
)
|