You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#JIRA UETOOL-3039 #rb Lauren.Barnes #lockdown Simon.Tourangeau #preflight 606e39a450c0ee00014dc64a #ROBOMERGE-SOURCE: CL 15948269 in //UE5/Release-5.0-EarlyAccess/... #ROBOMERGE-BOT: STARSHIP (Release-5.0-EarlyAccess -> Main) (v787-15839533) [CL 15950323 by louise rasmussen in ue5-main branch]
40 lines
984 B
C#
40 lines
984 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class FunctionalTestingEditor : ModuleRules
|
|
{
|
|
public FunctionalTestingEditor(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange
|
|
(
|
|
new string[] {
|
|
"Core",
|
|
"InputCore",
|
|
"CoreUObject",
|
|
"SlateCore",
|
|
"Slate",
|
|
"EditorStyle",
|
|
"Engine",
|
|
"AssetRegistry"
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Engine",
|
|
"EditorFramework",
|
|
"UnrealEd",
|
|
"LevelEditor",
|
|
"SessionFrontend",
|
|
"FunctionalTesting",
|
|
"PlacementMode",
|
|
"WorkspaceMenuStructure",
|
|
"ScreenShotComparisonTools",
|
|
"ToolMenus",
|
|
"AssetTools"
|
|
}
|
|
);
|
|
}
|
|
}
|