Import helper plugin
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
// Copyright (c) 2026 Unreal Directive. Licensed under the MIT License.
|
||||
|
||||
using UnrealBuildTool;
|
||||
|
||||
public class DirectiveUtilitiesEditor : ModuleRules
|
||||
{
|
||||
public DirectiveUtilitiesEditor(ReadOnlyTargetRules Target) : base(Target)
|
||||
{
|
||||
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
|
||||
|
||||
PublicDependencyModuleNames.AddRange(
|
||||
new string[]
|
||||
{
|
||||
"Core",
|
||||
"CoreUObject",
|
||||
"Engine",
|
||||
"EditorSubsystem",
|
||||
"EditorScriptingUtilities",
|
||||
"DirectiveUtilitiesRuntime",
|
||||
}
|
||||
);
|
||||
|
||||
PrivateDependencyModuleNames.AddRange(
|
||||
new string[]
|
||||
{
|
||||
"Slate",
|
||||
"SlateCore",
|
||||
"UnrealEd",
|
||||
"AssetRegistry",
|
||||
"AssetTools",
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user