Files
UnrealEngine/Engine/Source/Editor/PackagesDialog/PackagesDialog.Build.cs
2025-05-18 13:04:45 +08:00

29 lines
559 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class PackagesDialog : ModuleRules
{
public PackagesDialog(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePathModuleNames.Add("AssetTools");
PrivateDependencyModuleNames.AddRange(
new string[] {
"ApplicationCore",
"Core",
"CoreUObject",
"InputCore",
"Slate",
"SlateCore",
"UnrealEd",
"SourceControl",
"AssetRegistry",
"ToolWidgets",
}
);
DynamicallyLoadedModuleNames.Add("AssetTools");
}
}