You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
38 lines
752 B
C#
38 lines
752 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System.IO;
|
|
using UnrealBuildTool;
|
|
|
|
public class AVEncoder : ModuleRules
|
|
{
|
|
public AVEncoder(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
|
|
PrivateDependencyModuleNames.AddRange(new string[]
|
|
{
|
|
"Core",
|
|
"Engine",
|
|
"RHI",
|
|
"RenderCore",
|
|
});
|
|
|
|
if (Target.Platform == UnrealTargetPlatform.Win64)
|
|
{
|
|
PublicDefinitions.Add("AVENCODER_SUPPORTED_MICROSOFT_PLATFORM=1");
|
|
|
|
PrivateDependencyModuleNames.AddRange(new string[]
|
|
{
|
|
"D3D11RHI"
|
|
});
|
|
|
|
PublicDelayLoadDLLs.Add("mfplat.dll");
|
|
PublicDelayLoadDLLs.Add("mfuuid.dll");
|
|
PublicDelayLoadDLLs.Add("Mfreadwrite.dll");
|
|
|
|
PublicSystemLibraries.Add("d3d11.lib");
|
|
PublicSystemLibraries.Add("DXGI.lib");
|
|
}
|
|
}
|
|
}
|
|
|