You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
///
|
||||
|
||||
Reference in New Issue
Block a user