You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
43 lines
779 B
C#
43 lines
779 B
C#
// 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",
|
|
"ToolWidgets",
|
|
"UATHelper",
|
|
"Zen"
|
|
});
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
new string[] {
|
|
"MainFrame",
|
|
});
|
|
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
});
|
|
UnsafeTypeCastWarningLevel = WarningLevel.Error;
|
|
}
|
|
}
|