Files
UnrealEngineUWP/Engine/Source/Developer/AutomationWindow/AutomationWindow.Build.cs
UnrealBot 73409369c0 Branch snapshot for CL 21319338
[CL 21319338 in ue5-main branch]
2022-08-10 16:03:37 +00:00

53 lines
1.2 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class AutomationWindow : ModuleRules
{
public AutomationWindow(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"AutomationController",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"DesktopPlatform",
"InputCore",
"ApplicationCore",
"Slate",
"SlateCore",
"ToolWidgets",
"CoreUObject",
"Json",
"JsonUtilities",
"AutomationTest"
}
);
// Added more direct dependencies to the editor for testing functionality
if (Target.bBuildEditor)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"EditorFramework",
"UnrealEd",
"Kismet",
"Engine", // Needed for UWorld/GWorld to find current level
}
);
}
PrivateIncludePathModuleNames.AddRange(
new string[] {
"Messaging",
"SessionServices",
}
);
}
}
}