Files
UnrealEngineUWP/Engine/Source/Developer/DeviceManager/DeviceManager.Build.cs
Juan Canada 2ecf4f9708 Merging //UE4/Dev-Main@10877709 to Dev-RenderPlat-Staging(//UE4/Dev-Rendering)
#rnx
#rb none

[CL 10895568 by Juan Canada in Dev-RenderPlat-Staging branch]
2020-01-07 13:45:01 -05:00

43 lines
1.0 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class DeviceManager : ModuleRules
{
public DeviceManager(ReadOnlyTargetRules Target) : base(Target)
{
PublicIncludePathModuleNames.AddRange(
new string[] {
"TargetDeviceServices",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"EditorStyle",
"InputCore",
"Slate",
"SlateCore",
"TargetPlatform",
"DesktopPlatform",
"WorkspaceMenuStructure",
}
);
PrivateIncludePaths.AddRange(
new string[] {
"Developer/DeviceManager/Private",
"Developer/DeviceManager/Private/Models",
"Developer/DeviceManager/Private/Widgets",
"Developer/DeviceManager/Private/Widgets/Apps",
"Developer/DeviceManager/Private/Widgets/Browser",
"Developer/DeviceManager/Private/Widgets/Details",
"Developer/DeviceManager/Private/Widgets/Processes",
"Developer/DeviceManager/Private/Widgets/Shared",
"Developer/DeviceManager/Private/Widgets/Toolbar",
}
);
}
}