2019-12-26 23:01:54 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2014-08-01 15:48:59 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class BuildPatchTool : ModuleRules
|
|
|
|
|
{
|
2017-01-30 16:52:08 -05:00
|
|
|
public BuildPatchTool( ReadOnlyTargetRules Target ) : base(Target)
|
2014-08-01 15:48:59 -04:00
|
|
|
{
|
2023-02-20 17:39:13 -05:00
|
|
|
PublicIncludePathModuleNames.Add("Launch");
|
2014-08-01 15:48:59 -04:00
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
2017-08-17 06:28:58 -04:00
|
|
|
new string[]
|
2014-08-01 15:48:59 -04:00
|
|
|
{
|
|
|
|
|
"Core",
|
2018-05-23 21:04:31 -04:00
|
|
|
"CoreUObject",
|
2014-08-01 15:48:59 -04:00
|
|
|
"BuildPatchServices",
|
|
|
|
|
"Projects",
|
2021-07-23 15:50:49 -04:00
|
|
|
"HTTP",
|
2015-05-28 11:08:54 -04:00
|
|
|
// The below items are not strictly needed by BPT, but core appears to need them during initialization
|
|
|
|
|
"PakFile",
|
|
|
|
|
"SandboxFile",
|
|
|
|
|
"NetworkFile",
|
|
|
|
|
"StreamingFile"
|
2014-08-01 15:48:59 -04:00
|
|
|
}
|
|
|
|
|
);
|
2017-08-17 06:28:58 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
if (Target.Configuration != UnrealTargetConfiguration.Shipping)
|
|
|
|
|
{
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
2018-08-14 18:32:34 -04:00
|
|
|
"ApplicationCore", // Required by AutomationController
|
2017-08-17 06:28:58 -04:00
|
|
|
"Messaging",
|
|
|
|
|
"AutomationWorker",
|
|
|
|
|
"AutomationController"
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
2014-08-01 15:48:59 -04:00
|
|
|
}
|
2015-05-28 11:08:54 -04:00
|
|
|
}
|