whoa/src/glue/CMakeLists.txt
2025-11-30 17:43:22 -06:00

29 lines
392 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
component
console
db
event
ffx
gx
model
net
sound
ui
util
PUBLIC
storm
)