mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-24 14:37:25 +00:00
5973430720
Wincent's attempt at making LU into something it isn't supposed to be, an ARPG.
12 lines
361 B
CMake
12 lines
361 B
CMake
set(DWORLDSERVER_SOURCES
|
|
"ObjectIDManager.cpp"
|
|
"PerformanceManager.cpp"
|
|
)
|
|
|
|
add_library(dWorldServer ${DWORLDSERVER_SOURCES})
|
|
add_executable(WorldServer "WorldServer.cpp")
|
|
|
|
target_link_libraries(dWorldServer ${COMMON_LIBRARIES})
|
|
target_link_libraries(WorldServer ${COMMON_LIBRARIES} dChatFilter dGame dPhysics Detour Recast tinyxml2 dWorldServer dNavigation)
|
|
|