Files
UnrealEngineUWP/Engine/Source/Developer/SettingsEditor/SettingsEditor.Build.cs
Matt Kuhlenschmidt 10126adc7d Record when a preference is changed for analytics. The value of the field is not sent.
[CL 2223627 by Matt Kuhlenschmidt in Main branch]
2014-07-18 14:18:55 -04:00

45 lines
887 B
C#

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