Files
UnrealEngineUWP/Engine/Source/Developer/SessionFrontend/SessionFrontend.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

54 lines
1.2 KiB
C#

// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class SessionFrontend : ModuleRules
{
public SessionFrontend(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"Slate",
"EditorStyle",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"DesktopPlatform",
"ApplicationCore",
"InputCore",
"Json",
"SessionServices",
"SlateCore",
// @todo gmp: remove these dependencies by making the session front-end extensible
"AutomationWindow",
"ScreenShotComparison",
"ScreenShotComparisonTools",
"Profiler",
"TargetPlatform",
"WorkspaceMenuStructure",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"Messaging",
"TargetDeviceServices",
}
);
PrivateIncludePaths.AddRange(
new string[] {
"Developer/SessionFrontend/Private",
"Developer/SessionFrontend/Private/Models",
"Developer/SessionFrontend/Private/Widgets",
"Developer/SessionFrontend/Private/Widgets/Browser",
"Developer/SessionFrontend/Private/Widgets/Console",
}
);
}
}