Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

41 lines
893 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using UnrealBuildTool.Rules;
public class MetaHumanLocalLiveLinkSource : ModuleRules
{
public MetaHumanLocalLiveLinkSource(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
PublicDependencyModuleNames.AddRange(new string[] {
"MetaHumanLiveLinkSource",
});
PrivateDependencyModuleNames.AddRange(new string[] {
"Core",
"CoreUObject",
"LiveLink",
"LiveLinkInterface",
"MediaUtils",
"MediaAssets",
"MediaFrameworkUtilities",
"SlateCore",
"Slate",
"InputCore",
"Engine",
"AudioPlatformConfiguration",
"MetaHumanPipelineCore",
"MetaHumanImageViewer",
"MetaHumanCoreTech",
"AudioMixerWasapi"
});
if (Target.Type == TargetType.Editor)
{
PrivateDependencyModuleNames.Add("UnrealEd");
}
}
}