Files
UnrealEngineUWP/Engine/Source/Runtime/Linux/AudioMixerSDL/AudioMixerSDL.Build.cs
jimmy smith cf2e6af0dd [Resubmit] Delete deprecated usage of GetRuntimeFormat and CreateCompressedInfo
#rb Aaron.McLeran

[CL 30580918 by jimmy smith in ue5-main branch]
2024-01-11 17:33:06 -05:00

41 lines
872 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class AudioMixerSDL : ModuleRules
{
public AudioMixerSDL(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePathModuleNames.Add("TargetPlatform");
PrivateIncludePathModuleNames.Add("AudioMixer");
string PlatformName = Target.Platform.ToString();
if (Target.IsInPlatformGroup(UnrealPlatformGroup.Linux))
{
PlatformName = "Linux";
}
if (Target.IsInPlatformGroup(UnrealPlatformGroup.Linux))
{
PrivateIncludePaths.Add("Runtime/Linux/AudioMixerSDL/Private/" + PlatformName);
}
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine",
"AudioMixer",
"AudioMixerCore"
}
);
AddEngineThirdPartyPrivateStaticDependencies(Target,
"UEOgg",
"Vorbis",
"VorbisFile",
"SDL2"
);
}
}