Files
UnrealEngine/Engine/Plugins/PCGInterops/PCGExternalDataInterop/Source/PCGExternalDataInteropEditor/PCGExternalDataInteropEditor.Build.cs
2025-05-18 13:04:45 +08:00

36 lines
678 B
C#

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