Files
UnrealEngineUWP/Engine/Plugins/Experimental/AutomationUtils/Source/AutomationUtilsEditor/AutomationUtilsEditor.Build.cs
jerome delattre 0e32e363c6 Remove deprecated and empty ScreenshotTools plugins
#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]
2021-12-01 14:24:32 -05:00

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