Files
UnrealEngineUWP/Engine/Source/Editor/DeviceProfileEditor/DeviceProfileEditor.Build.cs
joe kirchoff 4eb0d7b810 Remove unnecessary private include path
#rnx
#jira UE-177808

[CL 24351077 by joe kirchoff in ue5-main branch]
2023-02-21 17:19:34 -05:00

42 lines
766 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class DeviceProfileEditor : ModuleRules
{
public DeviceProfileEditor(ReadOnlyTargetRules Target) : base(Target)
{
PublicIncludePathModuleNames.AddRange(
new string[] {
"UnrealEd"
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine",
"InputCore",
"Slate",
"SlateCore",
"LevelEditor",
"EditorFramework",
"UnrealEd",
"WorkspaceMenuStructure",
"PropertyEditor",
"SourceControl",
"TargetPlatform",
"DesktopPlatform",
"SharedSettingsWidgets",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"MainFrame",
}
);
}
}