You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rnx #jira UE-179253 #preflight 64065cffaa00423335e578c9 #rb backout [CL 24531223 by Jerome Delattre in ue5-main branch]
44 lines
791 B
C#
44 lines
791 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class AutomationWorker : ModuleRules
|
|
{
|
|
public AutomationWorker(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"AutomationMessages",
|
|
"AutomationTest",
|
|
"CoreUObject",
|
|
"Analytics",
|
|
"AnalyticsET",
|
|
"Json",
|
|
"JsonUtilities"
|
|
}
|
|
);
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"MessagingCommon",
|
|
}
|
|
);
|
|
|
|
if (Target.bCompileAgainstEngine)
|
|
{
|
|
PrivateDependencyModuleNames.Add("Engine");
|
|
PrivateDependencyModuleNames.Add("RHI");
|
|
}
|
|
}
|
|
}
|
|
}
|