Files
UnrealEngineUWP/Engine/Source/Developer/AssetTools/AssetTools.Build.cs
alexis matte 888f708d3b Allow Physics asset to be a developper module with no dependencecies on any editor module.
#jira UETOOL-3603
#rb richard.talbotwatkin
#preflight 60d1e95f78c3b000010f6005

#ROBOMERGE-SOURCE: CL 16743468 in //UE5/Main/...
#ROBOMERGE-BOT: STARSHIP (Main -> Release-Engine-Test) (v835-16672529)

[CL 16743480 by alexis matte in ue5-release-engine-test branch]
2021-06-22 11:13:19 -04:00

104 lines
2.2 KiB
C#

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