You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira #ROBOMERGE-SOURCE: CL 4831509 via CL 4834337 [CL 4834362 by ben marsh in Main branch]
44 lines
1.1 KiB
C#
44 lines
1.1 KiB
C#
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class EditorStyle : ModuleRules
|
|
{
|
|
public EditorStyle(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"Slate",
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"SlateCore",
|
|
}
|
|
);
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
"Settings",
|
|
}
|
|
);
|
|
|
|
// DesktopPlatform is only available for Editor and Program targets (running on a desktop platform)
|
|
bool IsDesktopPlatformType = Target.Platform == UnrealBuildTool.UnrealTargetPlatform.Win32
|
|
|| Target.Platform == UnrealBuildTool.UnrealTargetPlatform.Win64
|
|
|| Target.Platform == UnrealBuildTool.UnrealTargetPlatform.Mac
|
|
|| Target.Platform == UnrealBuildTool.UnrealTargetPlatform.Linux;
|
|
if (Target.Type == TargetType.Editor || (Target.Type == TargetType.Program && IsDesktopPlatformType))
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"DesktopPlatform",
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|