Files
UnrealEngineUWP/Engine/Source/Editor/ProjectSettingsViewer/ProjectSettingsViewer.Build.cs
2014-03-14 14:13:41 -04:00

38 lines
624 B
C#

// Copyright 1998-2014 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",
"UnrealEd",
"MoviePlayer"
}
);
PrivateIncludePaths.AddRange(
new string[]
{
"Editor/ProjectSettingsViewer/Private",
}
);
}
}
}