mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-24 22:47:25 +00:00
10 lines
248 B
CMake
10 lines
248 B
CMake
|
file(
|
||
|
GLOB SOURCES_CHAT
|
||
|
LIST_DIRECTORIES false
|
||
|
RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}"
|
||
|
*.cpp
|
||
|
)
|
||
|
|
||
|
add_executable(ChatServer ${SOURCES_CHAT})
|
||
|
target_link_libraries(ChatServer dChatFilter)
|
||
|
target_link_libraries(ChatServer ${SHARED_LIBS})
|