mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 17:58:20 +00:00
12 lines
335 B
CMake
12 lines
335 B
CMake
set(DCHATSERVER_SOURCES
|
|
"ChatIgnoreList.cpp"
|
|
"ChatPacketHandler.cpp"
|
|
"PlayerContainer.cpp"
|
|
)
|
|
|
|
add_executable(ChatServer "ChatServer.cpp")
|
|
add_library(dChatServer ${DCHATSERVER_SOURCES})
|
|
|
|
target_link_libraries(dChatServer ${COMMON_LIBRARIES} dChatFilter)
|
|
target_link_libraries(ChatServer ${COMMON_LIBRARIES} dChatFilter dChatServer)
|