2019-12-26 15:32:37 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class CollectionManager : ModuleRules
|
|
|
|
|
{
|
2017-01-30 16:52:08 -05:00
|
|
|
public CollectionManager(ReadOnlyTargetRules Target) : base(Target)
|
2014-03-14 14:13:41 -04:00
|
|
|
{
|
2023-02-06 12:05:08 -05:00
|
|
|
UnsafeTypeCastWarningLevel = WarningLevel.Error;
|
|
|
|
|
|
2014-03-14 14:13:41 -04:00
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Core",
|
2022-02-10 10:05:44 -05:00
|
|
|
"CoreUObject",
|
2015-07-07 10:31:39 -04:00
|
|
|
"DirectoryWatcher",
|
2023-05-01 17:00:52 -04:00
|
|
|
"Analytics",
|
2023-06-05 23:47:24 -04:00
|
|
|
"SourceControl",
|
|
|
|
|
"DeveloperSettings"
|
2014-03-14 14:13:41 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|