You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-133314 #rb Michael.Sartain #preflight 6203cfda724404041858c36c [CL 18918198 by Brandon Schaefer in ue5-main branch]
17 lines
431 B
C#
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"; } }
|
|
}
|
|
}
|