You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-179187 #rnx #rb trivial #preflight 6422af0b5e52099fe3ba9cc5 [CL 24815951 by David Harvey in ue5-main branch]
42 lines
1.1 KiB
C#
42 lines
1.1 KiB
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System.IO;
|
|
using UnrealBuildTool;
|
|
|
|
[SupportedPlatformGroups("Windows")]
|
|
public class GameplayMediaEncoder : ModuleRules
|
|
{
|
|
public GameplayMediaEncoder(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
// NOTE: General rule is not to access the private folder of another module,
|
|
// but to use the ISubmixBufferListener interface, we need to include some private headers
|
|
PrivateIncludePaths.Add(System.IO.Path.Combine(Directory.GetCurrentDirectory(), "./Runtime/AudioMixer/Private"));
|
|
|
|
PrivateDependencyModuleNames.AddRange(new string[]
|
|
{
|
|
"Core",
|
|
"Engine",
|
|
"CoreUObject",
|
|
"ApplicationCore",
|
|
"RenderCore",
|
|
"RHI",
|
|
"SlateCore",
|
|
"Slate",
|
|
"HTTP",
|
|
"Json",
|
|
"AVEncoder"
|
|
});
|
|
|
|
if (Target.IsInPlatformGroup(UnrealPlatformGroup.Windows))
|
|
{
|
|
PrivateDependencyModuleNames.Add("D3D11RHI");
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target, "DX11");
|
|
|
|
PublicDelayLoadDLLs.Add("mfplat.dll");
|
|
PublicDelayLoadDLLs.Add("mfuuid.dll");
|
|
PublicDelayLoadDLLs.Add("Mfreadwrite.dll");
|
|
}
|
|
}
|
|
}
|
|
|