You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
68 lines
1.2 KiB
C#
68 lines
1.2 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[]
|
|
{
|
|
"AssetTools",
|
|
"AppFramework",
|
|
"AudioExtensions",
|
|
"AudioSynesthesia",
|
|
"EditorWidgets",
|
|
"Kismet",
|
|
"KismetWidgets",
|
|
"MetasoundEngine",
|
|
"MetasoundFrontend",
|
|
"MetasoundGenerator",
|
|
"MetasoundGraphCore",
|
|
"MetasoundStandardNodes",
|
|
"SignalProcessing",
|
|
"SubobjectEditor",
|
|
"ToolMenus",
|
|
"ToolWidgets",
|
|
"WaveTable",
|
|
"WaveTableEditor"
|
|
}
|
|
);
|
|
|
|
PublicDependencyModuleNames.AddRange
|
|
(
|
|
new string[]
|
|
{
|
|
"ApplicationCore",
|
|
"AudioAnalyzer",
|
|
"AudioEditor",
|
|
"AudioMixer",
|
|
"AudioWidgets",
|
|
"AssetDefinition",
|
|
"ClassViewer",
|
|
"ContentBrowser",
|
|
"Core",
|
|
"CoreUObject",
|
|
"DetailCustomizations",
|
|
"EditorFramework",
|
|
"EditorStyle",
|
|
"EditorSubsystem",
|
|
"Engine",
|
|
"GraphEditor",
|
|
"InputCore",
|
|
"PropertyEditor",
|
|
"RenderCore",
|
|
"Slate",
|
|
"SlateCore",
|
|
"UnrealEd"
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|