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
15 lines
462 B
CMake
15 lines
462 B
CMake
set(DSCRIPTS_SOURCES_AI_ACT
|
|
"ActMine.cpp"
|
|
"ActPlayerDeathTrigger.cpp"
|
|
"ActVehicleDeathTrigger.cpp")
|
|
|
|
add_subdirectory(FootRace)
|
|
|
|
foreach(file ${DSCRIPTS_SOURCES_AI_ACT_FOOTRACE})
|
|
set(DSCRIPTS_SOURCES_AI_ACT ${DSCRIPTS_SOURCES_AI_ACT} "FootRace/${file}")
|
|
endforeach()
|
|
|
|
add_library(dScriptsAiAct STATIC ${DSCRIPTS_SOURCES_AI_ACT})
|
|
target_include_directories(dScriptsAiAct PUBLIC "." "FootRace")
|
|
target_precompile_headers(dScriptsAiAct REUSE_FROM dScriptsBase)
|