thunderbrew/src/client/CMakeLists.txt

27 lines
366 B
Text
Raw Normal View History

2023-01-02 13:17:18 -06:00
file(GLOB PRIVATE_SOURCES "*.cpp")
add_library(client STATIC
${PRIVATE_SOURCES}
)
target_include_directories(client
PRIVATE
${CMAKE_SOURCE_DIR}/src
)
target_link_libraries(client
PRIVATE
async
2023-02-13 23:21:25 -06:00
db
2023-01-02 13:17:18 -06:00
event
gx
model
net
ui
util
world
PUBLIC
common
storm
)