Files
UnrealEngineUWP/Engine/Source/Editor/LocalizationDashboard/LocalizationDashboard.Build.cs
Joe Conley 6cb0ae2cb1 Add Localization Service Provider settings to Localization Dashboard
Also deleting Localization Dashboard's ILocalizationServiceProvider, as this class now exists in the LocalizationService module.

[CL 2564754 by Joe Conley in Main branch]
2015-05-26 07:13:31 -04:00

50 lines
955 B
C#

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class LocalizationDashboard : ModuleRules
{
public LocalizationDashboard(TargetInfo Target)
{
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"PropertyEditor",
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Engine",
"Slate",
"SlateCore",
"InputCore",
"UnrealEd",
"EditorStyle",
"DesktopPlatform",
"TranslationEditor",
"MainFrame",
"SourceControl",
"SharedSettingsWidgets",
"LocalizationService"
}
);
PrivateIncludePaths.AddRange(
new string[]
{
"Editor/LocalizationDashboard/Private",
}
);
PublicIncludePaths.AddRange(
new string[]
{
"Editor/LocalizationDashboard/Public",
}
);
}
}