2014-12-07 19:09:38 -05:00
|
|
|
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
2014-11-07 09:55:57 -05:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class AddContentDialog : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public AddContentDialog(TargetInfo Target)
|
|
|
|
|
{
|
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"AssetTools",
|
2015-01-30 10:48:17 -05:00
|
|
|
"ContentBrowser",
|
2015-04-27 05:56:20 -04:00
|
|
|
"SuperSearch"
|
2014-11-07 09:55:57 -05:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Core",
|
|
|
|
|
"Slate",
|
|
|
|
|
"SlateCore",
|
|
|
|
|
"InputCore",
|
|
|
|
|
"Json",
|
|
|
|
|
"EditorStyle",
|
|
|
|
|
"DirectoryWatcher",
|
|
|
|
|
"DesktopPlatform",
|
|
|
|
|
"PakFile",
|
|
|
|
|
"ImageWrapper",
|
2014-12-17 14:52:54 -05:00
|
|
|
"UnrealEd",
|
2015-04-27 05:56:20 -04:00
|
|
|
"CoreUObject",
|
|
|
|
|
"WidgetCarousel",
|
|
|
|
|
|
2014-11-12 14:49:21 -05:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
2014-11-07 09:55:57 -05:00
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
2015-04-27 05:56:20 -04:00
|
|
|
"SuperSearch",
|
2014-11-07 09:55:57 -05:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
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",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|