Files
UnrealEngineUWP/Engine/Source/Editor/AddContentDialog/AddContentDialog.Build.cs
Matt Kuhlenschmidt aef1e008b4 Fix up use cases of specifying "PrimaryButton" style directly. Replaced instances with SPrimaryButton
#preflight 612d40b9423a8f00013c5b92

[CL 17457077 by Matt Kuhlenschmidt in ue5-main branch]
2021-09-08 08:29:01 -04:00

46 lines
899 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class AddContentDialog : ModuleRules
{
public AddContentDialog(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePathModuleNames.AddRange(
new string[] {
"AssetTools",
"ContentBrowser"
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"ApplicationCore",
"Slate",
"SlateCore",
"InputCore",
"Json",
"EditorStyle",
"DirectoryWatcher",
"DesktopPlatform",
"PakFile",
"ImageWrapper",
"EditorFramework",
"UnrealEd",
"CoreUObject",
"WidgetCarousel",
"ToolWidgets",
}
);
PrivateIncludePaths.AddRange(
new string[] {
"Editor/AddContentDialog/Private",
"Editor/AddContentDialog/Private/ViewModels",
"Editor/AddContentDialog/Private/ContentSourceProviders/FeaturePack",
}
);
}
}