Files
UnrealEngine/Engine/Plugins/MetaHuman/MetaHumanLiveLink/Source/MetaHumanLiveLinkSourceEditor/MetaHumanLiveLinkSourceEditor.Build.cs
2025-05-18 13:04:45 +08:00

28 lines
604 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using UnrealBuildTool.Rules;
public class MetaHumanLiveLinkSourceEditor : ModuleRules
{
public MetaHumanLiveLinkSourceEditor(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
PublicDependencyModuleNames.AddRange(new string[] {
"LiveLinkInterface",
"UnrealEd",
});
PrivateDependencyModuleNames.AddRange(new string[] {
"Core",
"CoreUObject",
"Engine",
"Slate",
"SlateCore",
"MetaHumanLiveLinkSource",
"MetaHumanCoreTech"
});
}
}