Files
UnrealEngineUWP/Engine/Source/Developer/AssetTools/AssetTools.Build.cs
Lauren Ridge e9c0a3b19b Exclude non-project plugin content from advanced copy
#jira UE-69759
#rb Jamie.Dale

[CL 4963057 by Lauren Ridge in 4.22 branch]
2019-02-11 13:52:15 -05:00

93 lines
2.0 KiB
C#

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class AssetTools : ModuleRules
{
public AssetTools(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePaths.Add("Developer/AssetTools/Private");
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"CurveAssetEditor",
"Engine",
"InputCore",
"ApplicationCore",
"Slate",
"SlateCore",
"EditorStyle",
"SourceControl",
"TextureEditor",
"UnrealEd",
"PropertyEditor",
"Kismet",
"Landscape",
"Foliage",
"Projects",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"Analytics",
"AssetRegistry",
"ContentBrowser",
"CollectionManager",
"CurveAssetEditor",
"DesktopPlatform",
"EditorWidgets",
"GameProjectGeneration",
"PropertyEditor",
"ActorPickerMode",
"Kismet",
"MainFrame",
"MaterialEditor",
"MessageLog",
"Persona",
"FontEditor",
"AudioEditor",
"SourceControl",
"Landscape",
"SkeletonEditor",
"SkeletalMeshEditor",
"AnimationEditor",
"AnimationBlueprintEditor",
"AnimationModifiers"
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"AssetRegistry",
"ContentBrowser",
"CollectionManager",
"CurveTableEditor",
"DataTableEditor",
"DesktopPlatform",
"EditorWidgets",
"GameProjectGeneration",
"ActorPickerMode",
"MainFrame",
"MaterialEditor",
"MessageLog",
"Persona",
"FontEditor",
"AudioEditor",
"SkeletonEditor",
"SkeletalMeshEditor",
"AnimationEditor",
"AnimationBlueprintEditor",
"AnimationModifiers"
}
);
}
}