You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
34 lines
737 B
C#
34 lines
737 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class SoundUtilitiesEditor : ModuleRules
|
|
{
|
|
public SoundUtilitiesEditor(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"EditorFramework",
|
|
"UnrealEd",
|
|
"AudioEditor",
|
|
"SoundUtilities",
|
|
"AudioMixer",
|
|
"EditorStyle",
|
|
"Slate",
|
|
"SlateCore",
|
|
"ContentBrowser",
|
|
"ToolMenus",
|
|
}
|
|
);
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
"AssetTools",
|
|
"AudioEditor",
|
|
});
|
|
}
|
|
}
|
|
} |