Files
UnrealEngineUWP/Engine/Source/Developer/OutputLog/OutputLog.Build.cs
ben hoffman 0c2ceb7981 Add support for manual auto-complete commands in the Output Log console
#rb Patrick.Boutot, aditya.ravichandran
#jira none

#ushell-cherrypick of 30885232 by kristof.morva1

[CL 30939858 by ben hoffman in ue5-main branch]
2024-01-26 16:00:39 -05:00

53 lines
1.0 KiB
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
"EngineSettings",
"InputCore",
"Slate",
"SlateCore",
"TargetPlatform",
"DesktopPlatform",
"ToolWidgets",
"ToolMenus",
}
);
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;
}
}