mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 08:12:44 +03:00
33 lines
431 B
CMake
33 lines
431 B
CMake
file(GLOB PRIVATE_SOURCES
|
|
"*.cpp"
|
|
"game/*.cpp"
|
|
"simple/*.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
|
|
gx
|
|
math
|
|
model
|
|
net
|
|
object
|
|
util
|
|
PUBLIC
|
|
common
|
|
storm
|
|
tempest
|
|
)
|