Files
UnrealEngine/Engine/Plugins/Runtime/PropertyBindingUtils/Source/PropertyBindingUtilsEditor/PropertyBindingUtilsEditor.Build.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

33 lines
622 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
namespace UnrealBuildTool.Rules
{
public class PropertyBindingUtilsEditor : ModuleRules
{
public PropertyBindingUtilsEditor(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[] {
"BlueprintGraph",
"Core",
"CoreUObject",
"EditorFramework",
"Engine",
"InputCore",
"PropertyBindingUtils",
"Slate",
"SlateCore",
"UnrealEd",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"StructUtilsEditor",
}
);
}
}
}