You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Submitting on behalf of Jeff Rous #rb phil.popp #jira UE-141709 #fyi jeff.rous #preflight 624b22e773665f7d5e84281e [CL 19611484 by phil popp in ue5-main branch]
39 lines
828 B
C#
39 lines
828 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class SignalProcessing : ModuleRules
|
|
{
|
|
public SignalProcessing(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core"
|
|
}
|
|
);
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"IntelISPC"
|
|
}
|
|
);
|
|
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target,
|
|
"UEOgg",
|
|
"Vorbis",
|
|
"VorbisFile",
|
|
"libOpus",
|
|
"UELibSampleRate"
|
|
);
|
|
|
|
// This is used to get FSoundQualityInfo struct for IAudioEncoder.
|
|
PrivateIncludePathModuleNames.Add("TargetPlatform");
|
|
|
|
// This is used to reference the EAudioMixerChannel enumeration.
|
|
PrivateIncludePathModuleNames.Add("AudioMixerCore");
|
|
}
|
|
}
|
|
}
|