Files
UnrealEngineUWP/Engine/Source/Programs/AutomationTool/CookedEditor/PlatformWrappers.cs
aurel cordonnier 69fe095547 Merge from Release-Engine-Staging @ 17636544 to Release-Engine-Test
This represents UE4/Main @17638339 and Dev-PerfTest @17636504

[CL 17638842 by aurel cordonnier in ue5-release-engine-test branch]
2021-09-27 19:54:25 -04:00

45 lines
1.1 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System;
using System.Collections.Generic;
using System.Linq;
using AutomationTool;
public class WindowsCookedEditor : Win64Platform
{
public override string GetCookPlatform(bool bDedicatedServer, bool bIsClientOnly)
{
return "WindowsCookedEditor";
}
public override TargetPlatformDescriptor GetTargetPlatformDescriptor()
{
return new TargetPlatformDescriptor(TargetPlatformType, "CookedEditor");
}
}
public class LinuxCookedEditor : GenericLinuxPlatform
{
public override string GetCookPlatform(bool bDedicatedServer, bool bIsClientOnly)
{
return "LinuxCookedEditor";
}
public override TargetPlatformDescriptor GetTargetPlatformDescriptor()
{
return new TargetPlatformDescriptor(TargetPlatformType, "CookedEditor");
}
}
public class MacCookedEditor : MacPlatform
{
public override string GetCookPlatform(bool bDedicatedServer, bool bIsClientOnly)
{
return "MacCookedEditor";
}
public override TargetPlatformDescriptor GetTargetPlatformDescriptor()
{
return new TargetPlatformDescriptor(TargetPlatformType, "CookedEditor");
}
}