Files
UnrealEngineUWP/Engine/Source/Programs/AutomationTool/Gauntlet/Platform/Windows/Gauntlet.WindowsBuildSources.cs
Jason Bestimt ca02ee7d5b Merging //UE4/Dev-Main to Dev-VR (//UE4/Dev-VR)
#RB:none

[CL 4398244 by Jason Bestimt in Dev-VR branch]
2018-09-26 10:51:26 -04:00

17 lines
443 B
C#

// Copyright 1998-2018 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"; } }
}
}