You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#lockdown nick.penwarden #RB none #codereview justin.sargent [CL 3033489 by Alex Fennell in Main branch]
30 lines
695 B
C#
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"
|
|
}
|
|
);
|
|
}
|
|
}
|