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-SOURCE: CL 6095648 via CL 6096480 [CL 6096540 by andrew grant in Main 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"; } }
|
|
}
|
|
}
|