2019-12-26 14:45:42 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2018-02-22 11:25:06 -05:00
|
|
|
|
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
|
|
|
{
|
|
|
|
|
public class AudioPlatformConfiguration : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public AudioPlatformConfiguration(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
2023-05-15 16:26:12 -04:00
|
|
|
PrivateDependencyModuleNames.AddRange(
|
2018-02-22 11:25:06 -05:00
|
|
|
new string[]
|
|
|
|
|
{
|
2023-05-15 16:26:12 -04:00
|
|
|
"Core",
|
|
|
|
|
"CoreUObject"
|
|
|
|
|
}
|
2018-02-22 11:25:06 -05:00
|
|
|
);
|
|
|
|
|
|
2023-05-15 16:26:12 -04:00
|
|
|
PublicIncludePathModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
"CoreUObject"
|
|
|
|
|
}
|
|
|
|
|
);
|
2018-02-22 11:25:06 -05:00
|
|
|
|
2023-05-15 16:26:12 -04:00
|
|
|
PrivateIncludePathModuleNames.Add("Engine");
|
|
|
|
|
|
|
|
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target, "UELibSampleRate");
|
2021-02-03 14:57:28 -04:00
|
|
|
PrivateDefinitions.Add("WITH_LIBSAMPLERATE=1");
|
|
|
|
|
}
|
2018-02-22 11:25:06 -05:00
|
|
|
}
|
|
|
|
|
}
|