// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
namespace Flax.Build.Platforms
{
///
/// The build platform for all Mac systems.
///
///
public sealed class MacPlatform : ApplePlatform
{
///
public override TargetPlatform Target => TargetPlatform.Mac;
///
/// Initializes a new instance of the class.
///
public MacPlatform()
{
if (Platform.BuildTargetPlatform != TargetPlatform.Mac)
return;
if (!HasRequiredSDKsInstalled)
{
Log.Warning("Missing XCode. Cannot build for Mac platform.");
return;
}
}
///
protected override Toolchain CreateToolchain(TargetArchitecture architecture)
{
return new MacToolchain(this, architecture);
}
///
public override bool CanBuildPlatform(TargetPlatform platform)
{
switch (platform)
{
case TargetPlatform.iOS:
case TargetPlatform.Mac: return HasRequiredSDKsInstalled;
default: return false;
}
}
}
}