Files
UnrealEngineUWP/Engine/Source/Editor/DerivedDataEditor/DerivedDataEditor.Build.cs
Francis Hurteau febc04ca18 Activating truncation warnings for
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]
2023-01-12 15:27:09 -05:00

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;
}
}