2022-07-16 23:24:16 +00:00
|
|
|
set(DGAME_DUTILITIES_SOURCES "BrickDatabase.cpp"
|
2023-09-28 17:16:11 +00:00
|
|
|
"CheatDetection.cpp"
|
2022-07-16 23:24:16 +00:00
|
|
|
"GUID.cpp"
|
|
|
|
"Loot.cpp"
|
|
|
|
"Mail.cpp"
|
2024-01-05 12:31:22 +00:00
|
|
|
"ObjectIDManager.cpp"
|
2022-07-16 23:24:16 +00:00
|
|
|
"Preconditions.cpp"
|
|
|
|
"SlashCommandHandler.cpp"
|
2023-10-22 15:36:08 +00:00
|
|
|
"ServerPreconditions.cpp"
|
2022-07-16 23:24:16 +00:00
|
|
|
"VanityUtilities.cpp" PARENT_SCOPE)
|
2024-01-04 00:41:46 +00:00
|
|
|
|
|
|
|
add_library(dUtilities STATIC ${DGAME_DUTILITIES_SOURCES})
|
|
|
|
target_precompile_headers(dUtilities REUSE_FROM dGameBase)
|
|
|
|
target_link_libraries(dUtilities
|
|
|
|
PUBLIC dDatabase dPhysics
|
|
|
|
INTERFACE dZoneManager)
|