You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Analytics, AnalyticsET, Cbor, Serialization, XMLParser, DerivedDataEditor, DirectoryWatcher, LogVisualizer, InputCore fixing a few addtional truncation warnings in SDerivedDataDialogs #jira UE-166274 #rb Devin.Doucette #preflight 63c05622305002c6417a8bd3 [CL 23668557 by Francis Hurteau in ue5-main branch]
45 lines
835 B
C#
45 lines
835 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class DerivedDataEditor : ModuleRules
|
|
{
|
|
public DerivedDataEditor(ReadOnlyTargetRules Target)
|
|
: base(Target)
|
|
{
|
|
PublicIncludePaths.Add(ModuleDirectory + "/Public");
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"Slate",
|
|
"SlateCore",
|
|
"InputCore",
|
|
"EditorFramework",
|
|
"UnrealEd",
|
|
"ToolMenus",
|
|
"OutputLog",
|
|
"DerivedDataCache",
|
|
"EditorSubsystem",
|
|
"WorkspaceMenuStructure",
|
|
"MessageLog",
|
|
"ToolWidgets",
|
|
"Zen"
|
|
});
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
new string[] {
|
|
"MainFrame",
|
|
});
|
|
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
"MainFrame",
|
|
});
|
|
UnsafeTypeCastWarningLevel = WarningLevel.Error;
|
|
}
|
|
}
|