mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 18:28:21 +00:00
d283bbd1c4
* fix: split apart big Cmake libraries * fix: formatting * fix: newline * fix: add quotes
10 lines
313 B
CMake
10 lines
313 B
CMake
set(DSCRIPTS_SOURCES_02_SERVER_PETS
|
|
"PetFromDigServer.cpp"
|
|
"PetFromObjectServer.cpp"
|
|
"DamagingPets.cpp")
|
|
|
|
add_library(dScriptsServerPets STATIC ${DSCRIPTS_SOURCES_02_SERVER_PETS})
|
|
target_include_directories(dScriptsServerPets PUBLIC ".")
|
|
target_precompile_headers(dScriptsServerPets REUSE_FROM dScriptsBase)
|
|
|