mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-13 03:32:28 +00:00
20 lines
319 B
Text
20 lines
319 B
Text
|
|
file(GLOB PRIVATE_SOURCES "*.cpp" "connection/*.cpp" "grunt/*.cpp" "login/*.cpp")
|
||
|
|
|
||
|
|
add_library(net STATIC
|
||
|
|
${PRIVATE_SOURCES}
|
||
|
|
)
|
||
|
|
|
||
|
|
target_include_directories(net
|
||
|
|
PRIVATE
|
||
|
|
${CMAKE_SOURCE_DIR}/src
|
||
|
|
)
|
||
|
|
|
||
|
|
target_link_libraries(net
|
||
|
|
PRIVATE
|
||
|
|
client
|
||
|
|
event
|
||
|
|
PUBLIC
|
||
|
|
common
|
||
|
|
storm
|
||
|
|
)
|