2019-12-26 14:45:42 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2019-02-28 17:02:41 -05:00
|
|
|
|
|
|
|
|
using System.IO;
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
2023-03-28 05:28:43 -04:00
|
|
|
[SupportedPlatformGroups("Windows")]
|
2019-02-28 17:02:41 -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",
|
2021-10-26 01:05:06 -04:00
|
|
|
"AVEncoder"
|
|
|
|
|
});
|
2019-02-28 17:02:41 -05:00
|
|
|
|
2023-03-28 05:28:43 -04:00
|
|
|
if (Target.IsInPlatformGroup(UnrealPlatformGroup.Windows))
|
2022-03-04 11:34:00 -05:00
|
|
|
{
|
|
|
|
|
PrivateDependencyModuleNames.Add("D3D11RHI");
|
|
|
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target, "DX11");
|
2019-02-28 17:02:41 -05:00
|
|
|
|
2022-03-04 11:34:00 -05:00
|
|
|
PublicDelayLoadDLLs.Add("mfplat.dll");
|
|
|
|
|
PublicDelayLoadDLLs.Add("mfuuid.dll");
|
|
|
|
|
PublicDelayLoadDLLs.Add("Mfreadwrite.dll");
|
2019-02-28 17:02:41 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|