mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
d283bbd1c4
* fix: split apart big Cmake libraries * fix: formatting * fix: newline * fix: add quotes
10 lines
220 B
CMake
10 lines
220 B
CMake
set(DZONEMANAGER_SOURCES "dZoneManager.cpp"
|
|
"Level.cpp"
|
|
"Spawner.cpp"
|
|
"Zone.cpp")
|
|
|
|
add_library(dZoneManager STATIC ${DZONEMANAGER_SOURCES})
|
|
target_link_libraries(dZoneManager
|
|
PUBLIC dPhysics
|
|
INTERFACE dWorldServer)
|