2019-12-27 09:26:59 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2019-08-23 11:09:36 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class AudioModulationEditor : ModuleRules
|
|
|
|
|
{
|
2022-05-31 19:43:02 -04:00
|
|
|
// Set this to false & disable MetaSound plugin dependency
|
|
|
|
|
// by setting MetaSound's field '"Enabled": false' in the
|
|
|
|
|
// AudioModulation.uplugin if running Modulation without
|
|
|
|
|
// MetaSound support.
|
|
|
|
|
public static bool bIncludeMetaSoundSupport = true;
|
|
|
|
|
|
2019-08-23 11:09:36 -04:00
|
|
|
public AudioModulationEditor(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
2022-05-31 19:43:02 -04:00
|
|
|
new string[]
|
|
|
|
|
{
|
2019-08-23 11:09:36 -04:00
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"Engine",
|
2020-08-14 13:24:16 -04:00
|
|
|
"EditorFramework",
|
2020-09-21 14:23:09 -04:00
|
|
|
"GameProjectGeneration",
|
2019-08-23 11:09:36 -04:00
|
|
|
"UnrealEd",
|
|
|
|
|
"PropertyEditor",
|
|
|
|
|
"SequenceRecorder",
|
|
|
|
|
"Slate",
|
|
|
|
|
"SlateCore",
|
2022-05-09 13:12:28 -04:00
|
|
|
"InputCore",
|
2019-08-23 11:09:36 -04:00
|
|
|
"AudioEditor",
|
2020-08-11 01:36:57 -04:00
|
|
|
"AudioExtensions",
|
2024-03-19 17:59:41 -04:00
|
|
|
"AudioInsights",
|
2024-06-20 17:49:40 -04:00
|
|
|
"AudioInsightsEditor",
|
2019-08-23 11:09:36 -04:00
|
|
|
"AudioModulation",
|
2019-10-21 14:35:57 -04:00
|
|
|
"CurveEditor",
|
2021-10-27 15:14:40 -04:00
|
|
|
"EditorWidgets",
|
|
|
|
|
"ToolWidgets",
|
2024-06-20 17:49:40 -04:00
|
|
|
"TraceAnalysis",
|
2022-06-27 12:00:38 -04:00
|
|
|
"WaveTable",
|
|
|
|
|
"WaveTableEditor"
|
2019-08-23 11:09:36 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
2022-05-31 19:43:02 -04:00
|
|
|
if (bIncludeMetaSoundSupport)
|
|
|
|
|
{
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
"MetasoundGraphCore",
|
|
|
|
|
"MetasoundFrontend",
|
|
|
|
|
"MetasoundEditor"
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
2019-08-23 11:09:36 -04:00
|
|
|
}
|
|
|
|
|
}
|