You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira #preflight 631e854acb1bdb7ecb5ac3c6 [CL 21960633 by bryan sefcik in ue5-main branch]
49 lines
971 B
C#
49 lines
971 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");
|
|
}
|
|
}
|
|
}
|