Files
UnrealEngineUWP/Engine/Source/Editor/ProjectSettingsViewer/ProjectSettingsViewer.Build.cs
Dan Hertzka 1aa277ebed Icons for Project Settings and Editor Preferences tabs
[CL 2532731 by Dan Hertzka in Main branch]
2015-04-30 18:13:48 -04:00

42 lines
746 B
C#

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class ProjectSettingsViewer : ModuleRules
{
public ProjectSettingsViewer(TargetInfo Target)
{
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"CoreUObject",
"Engine",
"EngineSettings",
"SettingsEditor",
"Slate",
"SlateCore",
"UnrealEd",
"MoviePlayer",
"AIModule",
"ProjectTargetPlatformEditor",
"EditorStyle",
}
);
PrivateIncludePaths.AddRange(
new string[]
{
"Editor/ProjectSettingsViewer/Private",
}
);
}
}
}