Files
UnrealEngineUWP/Engine/Source/Editor/AddContentDialog/AddContentDialog.Build.cs
Frank Fella 60f9975fc2 AddContentDialog - Upgrade to the nice widget carousel that the launcher uses.
[CL 2357397 by Frank Fella in Main branch]
2014-11-12 14:49:21 -05:00

57 lines
1.0 KiB
C#

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class AddContentDialog : ModuleRules
{
public AddContentDialog(TargetInfo Target)
{
PrivateIncludePathModuleNames.AddRange(
new string[] {
"AssetTools",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"Slate",
"SlateCore",
"InputCore",
"Json",
"EditorStyle",
"DirectoryWatcher",
"DesktopPlatform",
"PakFile",
"ImageWrapper",
"UnrealEd"
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"WidgetCarousel"
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
}
);
PublicIncludePathModuleNames.AddRange(
new string[] {
}
);
PrivateIncludePaths.AddRange(
new string[] {
"Editor/AddContentDialog/Private",
"Editor/AddContentDialog/Private/ViewModels",
"Editor/AddContentDialog/Private/ContentSourceProviders/AssetPack",
"Editor/AddContentDialog/Private/ContentSourceProviders/FeaturePack",
}
);
}
}