mirror of
https://github.com/DarkflameUniverse/DarkflameServer
synced 2024-08-30 18:43:58 +00:00
d283bbd1c4
* fix: split apart big Cmake libraries * fix: formatting * fix: newline * fix: add quotes
33 lines
1011 B
CMake
33 lines
1011 B
CMake
set(DSCRIPTS_SOURCES_02_SERVER_MAP_GENERAL
|
|
"BankInteractServer.cpp"
|
|
"BaseInteractDropLootServer.cpp"
|
|
"Binoculars.cpp"
|
|
"ExplodingAsset.cpp"
|
|
"FrictionVolumeServer.cpp"
|
|
"ForceVolumeServer.cpp"
|
|
"GrowingFlower.cpp"
|
|
"ImaginationBackpackHealServer.cpp"
|
|
"MailBoxServer.cpp"
|
|
"NjRailSwitch.cpp"
|
|
"PetDigServer.cpp"
|
|
"PropertyDevice.cpp"
|
|
"PropertyPlatform.cpp"
|
|
"QbEnemyStunner.cpp"
|
|
"QbSpawner.cpp"
|
|
"StoryBoxInteractServer.cpp"
|
|
"TokenConsoleServer.cpp"
|
|
"TouchMissionUpdateServer.cpp"
|
|
"VisToggleNotifierServer.cpp"
|
|
"NTNaomiDirtServer.cpp"
|
|
"WishingWellServer.cpp")
|
|
|
|
add_subdirectory(Ninjago)
|
|
|
|
foreach(file ${DSCRIPTS_SOURCES_02_SERVER_MAP_GENERAL_NINJAGO})
|
|
set(DSCRIPTS_SOURCES_02_SERVER_MAP_GENERAL ${DSCRIPTS_SOURCES_02_SERVER_MAP_GENERAL} "Ninjago/${file}")
|
|
endforeach()
|
|
|
|
add_library(dScriptsServerMapGeneral ${DSCRIPTS_SOURCES_02_SERVER_MAP_GENERAL})
|
|
target_include_directories(dScriptsServerMapGeneral PUBLIC "." "Ninjago")
|
|
target_precompile_headers(dScriptsServerMapGeneral REUSE_FROM dScriptsBase)
|