mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-23 14:07:20 +00:00
18 lines
522 B
CMake
18 lines
522 B
CMake
set(DWORLDSERVER_SOURCES
|
|
"PerformanceManager.cpp"
|
|
)
|
|
|
|
add_library(dWorldServer OBJECT ${DWORLDSERVER_SOURCES})
|
|
target_link_libraries(dWorldServer PUBLIC dGameBase dCommon)
|
|
|
|
add_executable(WorldServer "WorldServer.cpp")
|
|
add_compile_definitions(WorldServer PRIVATE PROJECT_VERSION="\"${PROJECT_VERSION}\"")
|
|
|
|
target_link_libraries(WorldServer ${COMMON_LIBRARIES}
|
|
dScripts
|
|
dGameBase
|
|
dComponents
|
|
dUtilities
|
|
dGameMessages
|
|
dInventory
|
|
dGame dChatFilter dZoneManager dPhysics Detour Recast tinyxml2 dWorldServer dNavigation) |