You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Tests with EngineTest project [at]josh.engebretson [at]ben.salem #rb na #ROBOMERGE-OWNER: ryan.vance #ROBOMERGE-AUTHOR: andrew.grant #ROBOMERGE-SOURCE: CL 6095648 via CL 6096480 via CL 6096540 #ROBOMERGE-BOT: DEVVR (Main -> Dev-VR) [CL 6128169 by andrew grant in Dev-VR branch]
26 lines
761 B
C#
26 lines
761 B
C#
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System;
|
|
using UnrealBuildTool;
|
|
|
|
namespace Gauntlet
|
|
{
|
|
public class Win64BuildSource : StagedBuildSource<StagedBuild>
|
|
{
|
|
public override string BuildName { get { return "Win64StagedBuild"; } }
|
|
|
|
public override UnrealTargetPlatform Platform { get { return UnrealTargetPlatform.Win64; } }
|
|
|
|
public override string PlatformFolderPrefix { get { return "Windows"; } }
|
|
}
|
|
|
|
public class Win32BuildSource : StagedBuildSource<StagedBuild>
|
|
{
|
|
public override string BuildName { get { return "Win32StagedBuild"; } }
|
|
|
|
public override UnrealTargetPlatform Platform { get { return UnrealTargetPlatform.Win32; } }
|
|
|
|
public override string PlatformFolderPrefix { get { return "Windows"; } }
|
|
}
|
|
}
|