You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb helen.yang #jira UE-147027 #rnx #preflight 62855a90614041edb7a54d23 [CL 20285298 by Rob Gay in ue5-main branch]
62 lines
1.1 KiB
C#
62 lines
1.1 KiB
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.IO;
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class MetasoundEditor : ModuleRules
|
|
{
|
|
public MetasoundEditor(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange
|
|
(
|
|
new string[]
|
|
{
|
|
"AppFramework",
|
|
"AudioExtensions",
|
|
"AudioMixer",
|
|
"AudioWidgets",
|
|
"AudioSynesthesia",
|
|
"EditorWidgets",
|
|
"Kismet",
|
|
"KismetWidgets",
|
|
"MetasoundEngine",
|
|
"MetasoundFrontend",
|
|
"MetasoundGenerator",
|
|
"MetasoundGraphCore",
|
|
"SignalProcessing",
|
|
"ToolMenus",
|
|
"ToolWidgets"
|
|
}
|
|
);
|
|
|
|
PublicDependencyModuleNames.AddRange
|
|
(
|
|
new string[]
|
|
{
|
|
"ApplicationCore",
|
|
"AudioAnalyzer",
|
|
"AudioMixer",
|
|
"AudioWidgets",
|
|
"ClassViewer",
|
|
"ContentBrowser",
|
|
"Core",
|
|
"CoreUObject",
|
|
"DetailCustomizations",
|
|
"EditorFramework",
|
|
"EditorStyle",
|
|
"Engine",
|
|
"GraphEditor",
|
|
"InputCore",
|
|
"PropertyEditor",
|
|
"RenderCore",
|
|
"Slate",
|
|
"SlateCore",
|
|
"UnrealEd"
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|