mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-08 17:28:20 +00:00
e54faa3820
* chore: organize build flags * Remove ambiguous include path Don't be default incluyde bcrypt so you need to specify the folder. Allows pre-processor to find the correct file. * Revert settings * working f
13 lines
420 B
CMake
13 lines
420 B
CMake
set(DCHATSERVER_SOURCES
|
|
"ChatIgnoreList.cpp"
|
|
"ChatPacketHandler.cpp"
|
|
"PlayerContainer.cpp"
|
|
)
|
|
|
|
add_executable(ChatServer "ChatServer.cpp")
|
|
add_library(dChatServer ${DCHATSERVER_SOURCES})
|
|
add_compile_definitions(ChatServer PRIVATE PROJECT_VERSION="\"${PROJECT_VERSION}\"")
|
|
|
|
target_link_libraries(dChatServer ${COMMON_LIBRARIES} dChatFilter)
|
|
target_link_libraries(ChatServer ${COMMON_LIBRARIES} dChatFilter dChatServer)
|