mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
12 lines
266 B
CMake
12 lines
266 B
CMake
|
set(DNET_SOURCES "AuthPackets.cpp"
|
||
|
"ChatPackets.cpp"
|
||
|
"ClientPackets.cpp"
|
||
|
"dServer.cpp"
|
||
|
"MasterPackets.cpp"
|
||
|
"PacketUtils.cpp"
|
||
|
"WorldPackets.cpp"
|
||
|
"ZoneInstanceManager.cpp")
|
||
|
|
||
|
add_library(dNet STATIC ${DNET_SOURCES})
|
||
|
target_link_libraries(dNet dCommon dDatabase)
|