You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Due to v19 no linking correctly as well as older LLVM versions that dont support C++17 anyway #jira UE-157592 #preflight 62b9f3f6e77151e599791232 #rb Joe.Kirchoff, Robert.Seiver, James.Singer #lockdown jessica.agee #ROBOMERGE-OWNER: brandon.schaefer #ROBOMERGE-AUTHOR: brandon.schaefer #ROBOMERGE-SOURCE: CL 20837379 in //UE5/Release-5.0/... via CL 20838337 #ROBOMERGE-BOT: UE5 (Release-Engine-Staging -> Main) (v971-20777995) [CL 20840089 by brandon schaefer in ue5-main branch]
27 lines
677 B
C#
27 lines
677 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using EpicGames.Core;
|
|
|
|
namespace UnrealBuildTool
|
|
{
|
|
partial class LinuxPlatformSDK : UEBuildPlatformSDK
|
|
{
|
|
public override string GetMainVersion()
|
|
{
|
|
return "v20_clang-13.0.1-centos7";
|
|
}
|
|
|
|
protected override void GetValidVersionRange(out string MinVersion, out string MaxVersion)
|
|
{
|
|
// all that matters is the number after the v, according to TryConvertVersionToInt()
|
|
MinVersion = "v20_clang-13.0.1-centos7";
|
|
MaxVersion = "v20_clang-13.0.1-centos7";
|
|
}
|
|
|
|
protected override void GetValidSoftwareVersionRange(out string? MinVersion, out string? MaxVersion)
|
|
{
|
|
MinVersion = MaxVersion = null;
|
|
}
|
|
}
|
|
}
|