You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb none #rnx #ROBOMERGE-OWNER: lina.halper #ROBOMERGE-AUTHOR: ben.marsh #ROBOMERGE-SOURCE: CL 6631504 in //UE4/Main/... #ROBOMERGE-BOT: ANIM (Main -> Dev-Anim) (v365-6733468) [CL 6748759 by ben marsh in Dev-Anim branch]
46 lines
1.2 KiB
C#
46 lines
1.2 KiB
C#
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System.IO;
|
|
using UnrealBuildTool;
|
|
|
|
[SupportedPlatforms("Win32", "Win64")]
|
|
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",
|
|
//"IBMRTMPIngest"
|
|
});
|
|
|
|
if (Target.Platform == UnrealTargetPlatform.Win32 || Target.Platform == UnrealTargetPlatform.Win64)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(new string[]
|
|
{
|
|
"D3D11RHI"
|
|
});
|
|
|
|
PublicDelayLoadDLLs.Add("mfplat.dll");
|
|
PublicDelayLoadDLLs.Add("mfuuid.dll");
|
|
PublicDelayLoadDLLs.Add("Mfreadwrite.dll");
|
|
|
|
PublicAdditionalLibraries.Add("d3d11.lib");
|
|
}
|
|
}
|
|
}
|
|
|