2019-03-13 09:42:39 -04:00
|
|
|
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
2019-02-27 11:57:17 -05:00
|
|
|
|
|
|
|
|
using System.IO;
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
2019-05-24 11:51:54 -04:00
|
|
|
[SupportedPlatforms("Win32", "Win64")]
|
2019-02-27 11:57:17 -05:00
|
|
|
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");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|