Files
UnrealEngine/Engine/Plugins/PCGInterops/PCGPythonInterop/Source/PCGPythonInteropEditor/PCGPythonInteropEditor.Build.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

36 lines
650 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class PCGPythonInteropEditor : ModuleRules
{
public PCGPythonInteropEditor(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine",
"Projects",
"PCG"
});
if (Target.bBuildEditor)
{
PrivateDependencyModuleNames.AddRange(
new string[]
{
"AssetDefinition",
"PCGEditor",
"UnrealEd",
"PythonScriptPlugin",
"Slate"
}
);
}
}
}
}