Files
UnrealEngineUWP/Engine/Source/Developer/SettingsEditor/SettingsEditor.Build.cs
Ben Marsh 13d012685f Merging copyright update from 4.19 branch.
#rb none
#rnx
#jira

[CL 3818977 by Ben Marsh in Staging-4.19 branch]
2018-01-02 15:30:26 -05:00

46 lines
940 B
C#

// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class SettingsEditor : ModuleRules
{
public SettingsEditor(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
}
);
PublicIncludePathModuleNames.AddRange(
new string[] {
"Settings",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"Analytics",
"CoreUObject",
"DesktopPlatform",
"EditorStyle",
"Engine",
"InputCore",
"PropertyEditor",
"SharedSettingsWidgets",
"Slate",
"SlateCore",
"SourceControl",
}
);
PrivateIncludePaths.AddRange(
new string[] {
"Developer/SettingsEditor/Private",
"Developer/SettingsEditor/Private/Models",
"Developer/SettingsEditor/Private/Widgets",
}
);
}
}