2021-09-02 16:45:15 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class DerivedDataEditor : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public DerivedDataEditor(ReadOnlyTargetRules Target)
|
|
|
|
|
: base(Target)
|
|
|
|
|
{
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"Engine",
|
|
|
|
|
"Slate",
|
|
|
|
|
"SlateCore",
|
|
|
|
|
"InputCore",
|
|
|
|
|
"EditorFramework",
|
|
|
|
|
"UnrealEd",
|
|
|
|
|
"ToolMenus",
|
|
|
|
|
"OutputLog",
|
|
|
|
|
"DerivedDataCache",
|
|
|
|
|
"EditorSubsystem",
|
|
|
|
|
"WorkspaceMenuStructure",
|
|
|
|
|
"MessageLog",
|
2021-09-08 08:29:49 -04:00
|
|
|
"ToolWidgets",
|
2022-09-05 06:19:34 -04:00
|
|
|
"Zen"
|
2021-09-02 16:45:15 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"MainFrame",
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
});
|
2023-01-12 15:27:09 -05:00
|
|
|
UnsafeTypeCastWarningLevel = WarningLevel.Error;
|
2021-09-02 16:45:15 -04:00
|
|
|
}
|
|
|
|
|
}
|