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
17 lines
546 B
CMake
17 lines
546 B
CMake
set(DSCRIPTS_SOURCES_02_SERVER_MAP_FV
|
|
"EnemyRoninSpawner.cpp"
|
|
"FvCandle.cpp"
|
|
"FvFong.cpp"
|
|
"FvHorsemenTrigger.cpp"
|
|
"ImgBrickConsoleQB.cpp")
|
|
|
|
add_subdirectory(Racing)
|
|
|
|
foreach(file ${DSCRIPTS_SOURCES_02_SERVER_MAP_FV_RACING})
|
|
set(DSCRIPTS_SOURCES_02_SERVER_MAP_FV ${DSCRIPTS_SOURCES_02_SERVER_MAP_FV} "Racing/${file}")
|
|
endforeach()
|
|
|
|
add_library(dScriptsServerMapFV ${DSCRIPTS_SOURCES_02_SERVER_MAP_FV})
|
|
target_include_directories(dScriptsServerMapFV PUBLIC "." "Racing")
|
|
target_precompile_headers(dScriptsServerMapFV REUSE_FROM dScriptsBase)
|