You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#preflight 6478a35ec26e3b2449f1afcf #jira [CL 25745177 by bryan sefcik in ue5-main branch]
85 lines
1.5 KiB
C#
85 lines
1.5 KiB
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class EngineAssetDefinitions : ModuleRules
|
|
{
|
|
public EngineAssetDefinitions(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
}
|
|
);
|
|
|
|
PublicIncludePathModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"SkeletalMeshEditor",
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"ContentBrowser",
|
|
"ContentBrowserData",
|
|
"AssetDefinition",
|
|
"UnrealEd",
|
|
"ToolMenus",
|
|
"CoreUObject",
|
|
"RHI",
|
|
"Engine",
|
|
"AssetRegistry",
|
|
"AssetTools",
|
|
"SlateCore",
|
|
"InputCore",
|
|
"Slate",
|
|
"Kismet",
|
|
"DesktopPlatform",
|
|
"Foliage",
|
|
"Landscape",
|
|
"PhysicsCore",
|
|
"Kismet",
|
|
"GameProjectGeneration",
|
|
"AnimationBlueprintEditor",
|
|
"ToolWidgets",
|
|
"SourceControl",
|
|
"Blutility",
|
|
"UMGEditor",
|
|
"ToolWidgets",
|
|
"BlueprintGraph"
|
|
}
|
|
);
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
"VirtualTexturingEditor",
|
|
"CurveAssetEditor",
|
|
"StaticMeshEditor",
|
|
"TextureEditor",
|
|
"MaterialEditor",
|
|
"PhysicsAssetEditor",
|
|
"FontEditor",
|
|
"DataTableEditor",
|
|
"CurveTableEditor",
|
|
}
|
|
);
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
new string[] {
|
|
"VirtualTexturingEditor",
|
|
"CurveAssetEditor",
|
|
"StaticMeshEditor",
|
|
"TextureEditor",
|
|
"MaterialEditor",
|
|
"PhysicsAssetEditor",
|
|
"FontEditor",
|
|
"DataTableEditor",
|
|
"CurveTableEditor",
|
|
}
|
|
);
|
|
}
|
|
}
|