mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2026-02-04 17:19:09 +00:00
feat(gameui): add CGGameUI class
This commit is contained in:
parent
13ab4a6c29
commit
5e25dc0171
7 changed files with 272 additions and 0 deletions
28
src/gameui/CMakeLists.txt
Normal file
28
src/gameui/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
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
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue