You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Copying //UE4/Release-Staging-4.21 to Dev-Main (//UE4/Dev-Main) [at] 4547701
#rb #rnx #lockdown Nick.Penwarden #ROBOMERGE-OWNER: ryan.gerleve #ROBOMERGE-AUTHOR: marc.audy #ROBOMERGE-SOURCE: CL 4547706 in //UE4/Main/... #ROBOMERGE-BOT: ENGINE (Main -> Dev-Networking) [CL 4548022 by ryan gerleve in Dev-Networking branch]
This commit is contained in:
@@ -1050,7 +1050,7 @@ namespace UnrealBuildTool
|
||||
{
|
||||
foreach (UnrealTargetPlatform Platform in Platforms)
|
||||
{
|
||||
if (InstalledPlatformInfo.IsValidPlatform(Platform, EProjectType.Code) && (Platform == UnrealTargetPlatform.Mac || Platform == UnrealTargetPlatform.IOS)) // @todo support other platforms
|
||||
if (InstalledPlatformInfo.IsValidPlatform(Platform, EProjectType.Code) && (Platform == UnrealTargetPlatform.Mac || Platform == UnrealTargetPlatform.IOS || Platform == UnrealTargetPlatform.TVOS)) // @todo support other platforms
|
||||
{
|
||||
UEBuildPlatform BuildPlatform = UEBuildPlatform.GetBuildPlatform(Platform, true);
|
||||
if ((BuildPlatform != null) && (BuildPlatform.HasRequiredSDKsInstalled() == SDKStatus.Valid))
|
||||
@@ -1114,7 +1114,7 @@ namespace UnrealBuildTool
|
||||
string TVOSExecutableName = MacExecutableName.Replace("-Mac-", "-TVOS-");
|
||||
BuildConfigs.Add(new XcodeBuildConfig(ConfigName, TargetName, FileReference.Combine(OutputDirectory, "Mac", MacExecutableName), FileReference.Combine(OutputDirectory, "IOS", IOSExecutableName), FileReference.Combine(OutputDirectory, "TVOS", TVOSExecutableName), ProjectTarget, Configuration));
|
||||
}
|
||||
else if (BuildPlatform.Platform == UnrealTargetPlatform.IOS)
|
||||
else if (BuildPlatform.Platform == UnrealTargetPlatform.IOS || BuildPlatform.Platform == UnrealTargetPlatform.TVOS)
|
||||
{
|
||||
string IOSExecutableName = MakeExecutableFileName(ExeName, UnrealTargetPlatform.IOS, Configuration, ProjectTarget.TargetRules.Architecture, ProjectTarget.TargetRules.UndecoratedConfiguration);
|
||||
string TVOSExecutableName = IOSExecutableName.Replace("-IOS-", "-TVOS-");
|
||||
|
||||
Reference in New Issue
Block a user