Files
UnrealEngineUWP/Engine/Source/Editor/SoundClassEditor/SoundClassEditor.Build.cs
Ben Marsh 149375b14b Update copyright notices to 2015.
[CL 2379638 by Ben Marsh in Main branch]
2014-12-07 19:09:38 -05:00

42 lines
715 B
C#

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class SoundClassEditor : ModuleRules
{
public SoundClassEditor(TargetInfo Target)
{
PrivateIncludePathModuleNames.AddRange(
new string[] {
"AssetRegistry",
"Kismet"
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine",
"Slate",
"SlateCore",
"InputCore",
"EditorStyle",
"UnrealEd",
"GraphEditor"
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"MainFrame",
"PropertyEditor",
"SceneOutliner",
"ClassViewer",
"ContentBrowser",
"WorkspaceMenuStructure"
}
);
}
}