2019-12-26 23:01:54 -05:00
|
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2018-09-25 10:11:35 -04:00
|
|
|
|
|
|
|
|
|
|
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"; } }
|
|
|
|
|
|
}
|
2023-11-28 14:11:10 -05:00
|
|
|
|
|
|
|
|
|
|
public interface IWindowsSelfInstallingBuild
|
|
|
|
|
|
{
|
2024-03-06 11:47:05 -05:00
|
|
|
|
void Install(UnrealAppConfig AppConfiguration);
|
|
|
|
|
|
WindowsAppInstall CreateAppInstall(TargetDeviceWindows TargetDevice, UnrealAppConfig AppConfig, out string BasePath);
|
2023-11-28 14:11:10 -05:00
|
|
|
|
}
|
2018-09-25 10:11:35 -04:00
|
|
|
|
}
|