You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-221863 #rb Brandon.Schaefer, james.singer #rnx #ushell-cherrypick of 18576903 by Brandon.Schaefer #ushell-cherrypick of 19329459 by matthew.sorrels [CL 35828608 by matthew sorrels in ue5-main branch]
32 lines
683 B
C#
32 lines
683 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.IO;
|
|
|
|
public class UnixCommonStartup : ModuleRules
|
|
{
|
|
public UnixCommonStartup(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.Add("Core");
|
|
PrivateDependencyModuleNames.Add("ApplicationCore");
|
|
PrivateDependencyModuleNames.Add("Projects");
|
|
|
|
PrivateDependencyModuleNames.Add("Slate");
|
|
|
|
// Only include Engine if necessary
|
|
if (Target.bCompileAgainstEngine)
|
|
{
|
|
PublicDependencyModuleNames.Add("Engine");
|
|
}
|
|
|
|
if (Target.Type == TargetType.Editor)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"SourceControl",
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|