Files
UnrealEngineUWP/Engine/Source/Programs/BuildPatchTool/BuildPatchTool.Build.cs
James Hopkin 235137b0cc Merging //UE4/Dev-Main to Dev-Networking (//UE4/Dev-Networking)
Copying to Dev-Main @ CL# 4688301

#rb none

[CL 4707991 by James Hopkin in Dev-Networking branch]
2019-01-11 02:57:03 -05:00

45 lines
1.0 KiB
C#

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class BuildPatchTool : ModuleRules
{
public BuildPatchTool( ReadOnlyTargetRules Target ) : base(Target)
{
PublicIncludePaths.Add("Runtime/Launch/Public");
// For LaunchEngineLoop.cpp include
PrivateIncludePaths.Add("Runtime/Launch/Private");
PrivateIncludePaths.Add("Programs/BuildPatchTool/Private");
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"BuildPatchServices",
"Projects",
"Http",
// The below items are not strictly needed by BPT, but core appears to need them during initialization
"PakFile",
"SandboxFile",
"NetworkFile",
"StreamingFile"
}
);
if (Target.Configuration != UnrealTargetConfiguration.Shipping)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"ApplicationCore", // Required by AutomationController
"Messaging",
"AutomationWorker",
"AutomationController"
}
);
}
}
}