Files
UnrealEngineUWP/Engine/Source/Developer/AutomationWindow/AutomationWindow.Build.cs
Max Preussner b164e63588 fixed up incorrect module dependencies in Automation modules
[CL 2048461 by Max Preussner in Main branch]
2014-04-23 19:18:15 -04:00

34 lines
613 B
C#

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class AutomationWindow : ModuleRules
{
public AutomationWindow(TargetInfo Target)
{
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"AutomationController",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"DesktopPlatform",
"InputCore",
"Slate",
"EditorStyle",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"Messaging",
"SessionServices",
}
);
}
}
}