mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-04-19 03:20:11 +03:00
25 lines
332 B
CMake
25 lines
332 B
CMake
file(GLOB PRIVATE_SOURCES "*.cpp")
|
|
|
|
add_library(glue STATIC
|
|
${PRIVATE_SOURCES}
|
|
)
|
|
|
|
target_include_directories(glue
|
|
PRIVATE
|
|
${CMAKE_SOURCE_DIR}/src
|
|
)
|
|
|
|
target_link_libraries(glue
|
|
PRIVATE
|
|
client
|
|
db
|
|
event
|
|
gx
|
|
net
|
|
sound
|
|
ui
|
|
util
|
|
PUBLIC
|
|
storm
|
|
)
|