Files
UnrealEngineUWP/Engine/Plugins/Runtime/Metasound/Source/MetasoundGenerator/MetasoundGenerator.Build.cs
phil popp cdf446c090 Metasound plugin initial checkin of data sharing reference graph.
#rb Aaron.McLeran Ethan.Geller Jimmy.Smith Rob.Gay Maxwell.Hayes
#jira UEAU-445

[CL 13521801 by phil popp in ue5-main branch]
2020-05-22 23:46:09 -04:00

33 lines
643 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.IO;
namespace UnrealBuildTool.Rules
{
public class MetasoundGenerator : ModuleRules
{
public MetasoundGenerator(ReadOnlyTargetRules Target) : base(Target)
{
//OptimizeCode = CodeOptimization.Never;
PrivateDependencyModuleNames.AddRange(
new string[] {
"SignalProcessing",
"CoreUObject",
"Engine",
"AudioMixerCore"
}
);
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"AudioMixer",
"MetasoundGraphCore"
}
);
}
}
}