Files
UnrealEngineUWP/Engine/Source/Programs/AutomationTool/Gauntlet/Platform/Linux/Gauntlet.LinuxBuildSources.cs
Brandon Schaefer e65e4e342c Add Linux support for Gauntlet
#jira UE-133314
#rb Michael.Sartain
#preflight 6203cfda724404041858c36c

[CL 18918198 by Brandon Schaefer in ue5-main branch]
2022-02-09 10:41:17 -05:00

17 lines
431 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System;
using UnrealBuildTool;
namespace Gauntlet
{
public class LinuxBuildSource : StagedBuildSource<StagedBuild>
{
public override string BuildName { get { return "LinuxStagedBuild"; } }
public override UnrealTargetPlatform Platform { get { return UnrealTargetPlatform.Linux; } }
public override string PlatformFolderPrefix { get { return "Linux"; } }
}
}