Files
UnrealEngineUWP/Engine/Source/Editor/ContentBrowser/ContentBrowser.Build.cs
Chris Gagnon 8fc25ea18e Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
#rb none

[CL 4676797 by Chris Gagnon in Dev-Editor branch]
2019-01-02 14:54:39 -05:00

64 lines
1.3 KiB
C#

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class ContentBrowser : ModuleRules
{
public ContentBrowser(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePathModuleNames.AddRange(
new string[] {
"AssetRegistry",
"AssetTools",
"CollectionManager",
"EditorWidgets",
"GameProjectGeneration",
"MainFrame",
"PackagesDialog",
"SourceControl",
"SourceControlWindows"
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"AppFramework",
"Core",
"CoreUObject",
"ApplicationCore",
"InputCore",
"Engine",
"Slate",
"SlateCore",
"EditorStyle",
"SourceControl",
"SourceControlWindows",
"WorkspaceMenuStructure",
"UnrealEd",
"EditorWidgets",
"Projects",
"AddContentDialog",
"DesktopPlatform",
"AssetRegistry"
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"PropertyEditor",
"PackagesDialog",
"AssetTools",
"CollectionManager",
"GameProjectGeneration",
"MainFrame"
}
);
PublicIncludePathModuleNames.AddRange(
new string[] {
"IntroTutorials"
}
);
}
}