You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-174139 #rb none #fyi Ryan.Hummer, Zack.Neyland, Robert.Seiver, James.Singer #preflight 63cedc59b91ac945f53281b9 [CL 23821785 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 "v21_clang-15.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 = "v21_clang-15.0.1-centos7";
|
|
MaxVersion = "v21_clang-15.0.1-centos7";
|
|
}
|
|
|
|
protected override void GetValidSoftwareVersionRange(out string? MinVersion, out string? MaxVersion)
|
|
{
|
|
MinVersion = MaxVersion = null;
|
|
}
|
|
}
|
|
}
|