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

31 lines
715 B
C#

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