You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-123745 #rb helen.yang #preflight 6138d986d9c85a0001815063 #ROBOMERGE-AUTHOR: phil.popp #ROBOMERGE-SOURCE: CL 17460375 in //UE5/Main/... #ROBOMERGE-BOT: STARSHIP (Main -> Release-Engine-Test) (v870-17433530) [CL 17460391 by phil popp in ue5-release-engine-test branch]
37 lines
618 B
C#
37 lines
618 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",
|
|
"MetasoundGraphCore",
|
|
"MetasoundGenerator",
|
|
"MetasoundFrontend",
|
|
"MetasoundEngine",
|
|
"SignalProcessing",
|
|
"Projects"
|
|
}
|
|
);
|
|
|
|
PublicDependencyModuleNames.AddRange
|
|
(
|
|
new string[]
|
|
{
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|