Copying //UE4/Dev-Build to Dev-Main (//UE4/Dev-Main)

#rb none
#rnx

[CL 4718806 by Ben Marsh in Main branch]
This commit is contained in:
Ben Marsh
2019-01-14 12:11:24 -05:00
11167 changed files with 1972254 additions and 59164 deletions
@@ -12,16 +12,23 @@ namespace UnrealBuildTool
/// <summary>
/// Base class for platform-specific project generators
/// </summary>
class IOSProjectGenerator : UEPlatformProjectGenerator
class IOSProjectGenerator : PlatformProjectGenerator
{
/// <summary>
/// Register the platform with the UEPlatformProjectGenerator class
/// Constructor
/// </summary>
public override void RegisterPlatformProjectGenerator()
/// <param name="Arguments">Command line arguments passed to the project generator</param>
public IOSProjectGenerator(CommandLineArguments Arguments)
: base(Arguments)
{
// Register this project generator for Mac
Log.TraceVerbose(" Registering for {0}", UnrealTargetPlatform.IOS.ToString());
UEPlatformProjectGenerator.RegisterPlatformProjectGenerator(UnrealTargetPlatform.IOS, this);
}
/// <summary>
/// Enumerate all the platforms that this generator supports
/// </summary>
public override IEnumerable<UnrealTargetPlatform> GetPlatforms()
{
yield return UnrealTargetPlatform.IOS;
}
///