Files
UnrealEngineUWP/Engine/Source/Runtime/SoundFieldRendering/SoundFieldRendering.Build.cs
Ethan Geller 9121bc3a44 #jira none
Fix copyrights for new soundfield/endpoint files.
#rb none

[CL 11302296 by Ethan Geller in Main branch]
2020-02-09 19:34:33 -05:00

28 lines
679 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class SoundFieldRendering : ModuleRules
{
public SoundFieldRendering(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"Engine",
"SignalProcessing",
"AudioMixer",
"AudioExtensions"
}
);
// This is used to get FSoundQualityInfo struct for IAudioEncoder.
PrivateIncludePathModuleNames.Add("TargetPlatform");
// This is used to reference the EAudioMixerChannel enumeration.
PrivateIncludePathModuleNames.Add("AudioMixerCore");
}
}
}