Files
UnrealEngineUWP/Engine/Source/Developer/AssetTools/AssetTools.Build.cs
Matt Kuhlenschmidt 68f4525e1b Merging //UE4/Dev-Main to Dev-Geometry (//UE4/Dev-Geometry)
#rb none

[CL 3889612 by Matt Kuhlenschmidt in Dev-Geometry branch]
2018-02-14 14:13:42 -05:00

90 lines
1.9 KiB
C#

// Copyright 1998-2018 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"
}
);
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",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"AssetRegistry",
"ContentBrowser",
"CollectionManager",
"CurveTableEditor",
"DataTableEditor",
"DesktopPlatform",
"EditorWidgets",
"GameProjectGeneration",
"ActorPickerMode",
"MainFrame",
"MaterialEditor",
"MessageLog",
"Persona",
"FontEditor",
"AudioEditor",
"SkeletonEditor",
"SkeletalMeshEditor",
"AnimationEditor",
"AnimationBlueprintEditor",
}
);
}
}