You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#lockdown nick.penwarden #fyi: James.Golding #rb: none [CL 4001436 by Lina Halper in Main branch]
28 lines
728 B
C#
28 lines
728 B
C#
// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class AudioPlatformConfiguration : ModuleRules
|
|
{
|
|
public AudioPlatformConfiguration(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject"
|
|
}
|
|
);
|
|
|
|
PrivateIncludePathModuleNames.Add("Engine");
|
|
|
|
if (Target.Type == TargetType.Editor && Target.Platform != UnrealTargetPlatform.Linux)
|
|
{
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target,
|
|
"UELibSampleRate"
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|