Files
UnrealEngineUWP/Engine/Source/Developer/OutputLog/OutputLog.Build.cs
francis hurteau 20279e0831 Truncation warning fixes for output log
#jira UE-166274
#rb Devin.Doucette

[CL 26780626 by francis hurteau in ue5-main branch]
2023-08-02 14:14:55 -04:00

51 lines
1023 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class OutputLog : ModuleRules
{
public OutputLog(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject", // @todo Mac: for some reason it's needed to link in debug on Mac
"InputCore",
"Slate",
"SlateCore",
"TargetPlatform",
"DesktopPlatform",
"ToolWidgets",
}
);
if (Target.bBuildEditor)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"EditorFramework",
"StatusBar",
"UnrealEd",
}
);
}
if (Target.bBuildEditor || Target.bBuildDeveloperTools)
{
PrivateIncludePathModuleNames.AddRange(
new string[] {
"WorkspaceMenuStructure",
}
);
}
if (Target.bCompileAgainstEngine)
{
// Required for output log drawer in editor / engine builds.
PrivateDependencyModuleNames.Add("Engine");
}
UnsafeTypeCastWarningLevel = WarningLevel.Error;
}
}