Files
UnrealEngineUWP/Engine/Source/Developer/MessageLog/MessageLog.Build.cs
Robb Surridge 65a3c1236d Move IntroTutorials to a plugin. Part 1: move code module and clean up references.
#jira 141830
#preflight 6202f3e4bd4f846436f1dfc6
#rb lauren.barnes

[CL 18920903 by Robb Surridge in ue5-main branch]
2022-02-09 13:00:06 -05:00

44 lines
933 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class MessageLog : ModuleRules
{
public MessageLog(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePaths.AddRange(
new string[] {
"Developer/MessageLog/Private",
"Developer/MessageLog/Private/Presentation",
"Developer/MessageLog/Private/UserInterface",
"Developer/MessageLog/Private/Model",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"ApplicationCore",
"Slate",
"SlateCore",
"InputCore",
}
);
if (Target.bBuildEditor)
{
PrivateIncludePathModuleNames.AddRange(
new string[] {
"Documentation",
}
);
}
if (Target.bCompileAgainstEngine && Target.Configuration != UnrealTargetConfiguration.Shipping)
{
PrecompileForTargets = PrecompileTargetsType.Any;
}
}
}