You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
36 lines
610 B
C#
36 lines
610 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class ZenDashboard : ModuleRules
|
|
{
|
|
public ZenDashboard(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"Json",
|
|
"Projects",
|
|
"ApplicationCore",
|
|
"Slate",
|
|
"SlateCore",
|
|
"StandaloneRenderer",
|
|
"Zen"
|
|
|
|
});
|
|
|
|
if (Target.IsInPlatformGroup(UnrealPlatformGroup.Linux))
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"UnixCommonStartup"
|
|
}
|
|
);
|
|
}
|
|
|
|
PublicIncludePathModuleNames.Add("Launch");
|
|
}
|
|
}
|