Files
UnrealEngineUWP/Engine/Source/Editor/AddContentDialog/AddContentDialog.Build.cs
Frank Fella 716e7443fa AddContentDialog - Automatically save imported assets from added content.
[CL 2391546 by Frank Fella in Main branch]
2014-12-17 14:52:54 -05:00

58 lines
1.1 KiB
C#

// Copyright 1998-2015 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",
"CoreUObject"
}
);
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",
}
);
}
}