Files
UnrealEngineUWP/Engine/Source/Developer/AutomationWindow/AutomationWindow.Build.cs
2014-03-14 14:13:41 -04:00

32 lines
567 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",
"SessionServices",
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"DesktopPlatform",
"InputCore",
"Messaging",
"Networking",
"Slate",
"EditorStyle",
}
);
}
}
}