Files
UnrealEngineUWP/Engine/Source/Developer/OutputLog/OutputLog.Build.cs
Alexander Sanoja 1adf425c77 Added Clear on PIE to Output Log options, along with Open Source Location of the log file and Open in External Editor of log file.
#jira UE-78069
#rb rex.hill
#rb chris.gagnon

[CL 7652420 by Alexander Sanoja in Dev-Editor branch]
2019-07-29 16:47:21 -04:00

32 lines
686 B
C#

// Copyright 1998-2019 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",
"EditorStyle",
"TargetPlatform",
"DesktopPlatform"
}
);
if (Target.bBuildEditor)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"UnrealEd"
}
);
}
}
}