You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb phil.popp #rnx #jira none #ROBOMERGE-AUTHOR: rob.gay #ROBOMERGE-SOURCE: CL 18344375 in //UE5/Release-5.0/... via CL 18344463 #ROBOMERGE-BOT: STARSHIP (Release-Engine-Staging -> Release-Engine-Test) (v895-18170469) [CL 18344565 by rob gay in ue5-release-engine-test branch]
38 lines
642 B
C#
38 lines
642 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.IO;
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class MetasoundEngineTest : ModuleRules
|
|
{
|
|
public MetasoundEngineTest(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange
|
|
(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"AudioExtensions",
|
|
"MetasoundGraphCore",
|
|
"MetasoundGenerator",
|
|
"MetasoundFrontend",
|
|
"MetasoundEngine",
|
|
"SignalProcessing",
|
|
"Projects"
|
|
}
|
|
);
|
|
|
|
PublicDependencyModuleNames.AddRange
|
|
(
|
|
new string[]
|
|
{
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|