Files
UnrealEngineUWP/Engine/Source/Runtime/AutomationWorker/AutomationWorker.Build.cs
Jerome Delattre 5fc9bd1e54 Undo fix from changelist 24482958 (Disable testing in Client net mode)
#rnx
#jira UE-179253
#preflight 64065cffaa00423335e578c9
#rb backout

[CL 24531223 by Jerome Delattre in ue5-main branch]
2023-03-06 16:50:52 -05:00

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");
}
}
}
}