You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
----------------------------------------------------------------- EngineTest fix-ups for interface changes #rb phil.popp #rnx #p4v-cherrypick 18344375 #ROBOMERGE-AUTHOR: rob.gay #ROBOMERGE-SOURCE: CL 18413265 via CL 18413387 via CL 18413403 via CL 18434961 via CL 18437305 #ROBOMERGE-BOT: STARSHIP (Release-Engine-Staging -> Release-Engine-Test) (v897-18405271) [CL 18437362 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[]
|
|
{
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|