Files
UnrealEngineUWP/Engine/Source/Programs/SlateUGS/SlateUGS.Build.cs
robert seiver 12f3ed9aaa Incremental progress on SlateUGS UI. Empty window and workspace selection/creation window now work (in addition to the main UGS window)
#fyi @Brandon.Schaefer
#preflight none

[CL 20655957 by robert seiver in ue5-main branch]
2022-06-14 16:13:13 -04:00

37 lines
751 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class SlateUGS : ModuleRules
{
public SlateUGS(ReadOnlyTargetRules Target) : base(Target)
{
PublicIncludePaths.Add("Runtime/Launch/Public");
PrivateDependencyModuleNames.AddRange(
new string[] {
"AppFramework",
"Core",
"ApplicationCore",
"Projects",
"Slate",
"SlateCore",
"StandaloneRenderer",
"ToolWidgets",
"DesktopPlatform", // Open file dialog
}
);
PrivateIncludePaths.Add("Runtime/Launch/Private"); // For LaunchEngineLoop.cpp include
if (Target.IsInPlatformGroup(UnrealPlatformGroup.Linux))
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"UnixCommonStartup"
}
);
}
}
}