Files
UnrealEngineUWP/Engine/Source/Programs/BuildPatchTool/BuildPatchTool.Build.cs
Alex Fennell 1b2dd61304 Merging \\UE4\Portal-Staging to \\UE4\Main
#lockdown nick.penwarden
#RB none
#codereview justin.sargent

[CL 3033489 by Alex Fennell in Main branch]
2016-06-29 18:00:01 -04:00

30 lines
695 B
C#

// Copyright 1998-2016 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class BuildPatchTool : ModuleRules
{
public BuildPatchTool( TargetInfo 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",
"BuildPatchServices",
"Projects",
// The below items are not strictly needed by BPT, but core appears to need them during initialization
"PakFile",
"SandboxFile",
"NetworkFile",
"StreamingFile"
}
);
}
}