You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rnx #jira none #rb Chris.Constantinescu, Eric.Knapik #ROBOMERGE-AUTHOR: jerome.delattre #ROBOMERGE-SOURCE: CL 18342605 in //UE5/Release-5.0/... via CL 18342655 #ROBOMERGE-BOT: STARSHIP (Release-Engine-Staging -> Release-Engine-Test) (v895-18170469) [CL 18342734 by jerome delattre in ue5-release-engine-test branch]
25 lines
470 B
C#
25 lines
470 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class AutomationUtilsEditor : ModuleRules
|
|
{
|
|
public AutomationUtilsEditor(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"ScreenShotComparisonTools",
|
|
"DesktopPlatform",
|
|
"AutomationMessages",
|
|
"Json",
|
|
"JsonUtilities"
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|