Files
UnrealEngineUWP/Engine/Source/Developer/AutomationWindow/AutomationWindow.Build.cs
Ben Marsh 13d012685f Merging copyright update from 4.19 branch.
#rb none
#rnx
#jira

[CL 3818977 by Ben Marsh in Staging-4.19 branch]
2018-01-02 15:30:26 -05:00

50 lines
1.2 KiB
C#

// Copyright 1998-2018 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",
"EditorStyle",
"CoreUObject",
"Json",
"JsonUtilities"
}
);
// Added more direct dependencies to the editor for testing functionality
if (Target.bBuildEditor)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"UnrealEd",
"Engine", // Needed for UWorld/GWorld to find current level
}
);
}
PrivateIncludePathModuleNames.AddRange(
new string[] {
"Messaging",
"SessionServices",
}
);
}
}
}