You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-175097 #rb Charlie.Huguenard #preflight 63d1895f033e457ba8f10cb4 [CL 23863384 by phil popp in ue5-main branch]
39 lines
661 B
C#
39 lines
661 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",
|
|
"AudioMixer",
|
|
"MetasoundGraphCore",
|
|
"MetasoundGenerator",
|
|
"MetasoundFrontend",
|
|
"MetasoundEngine",
|
|
"SignalProcessing",
|
|
"Projects"
|
|
}
|
|
);
|
|
|
|
PublicDependencyModuleNames.AddRange
|
|
(
|
|
new string[]
|
|
{
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|