You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-123975 #rb phil.popp #preflight 61b196c7e0430ca438a95533 #ROBOMERGE-AUTHOR: jimmy.smith #ROBOMERGE-SOURCE: CL 18416580 in //UE5/Release-5.0/... via CL 18416585 #ROBOMERGE-BOT: STARSHIP (Release-Engine-Staging -> Release-Engine-Test) (v897-18405271) [CL 18416586 by jimmy smith in ue5-release-engine-test branch]
21 lines
405 B
C#
21 lines
405 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class AudioLinkEngine : ModuleRules
|
|
{
|
|
public AudioLinkEngine(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
// We depend on USoundSubmix/AudioDevice which is in Engine.
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|