Mac impl progress

This commit is contained in:
Wojtek Figat
2021-12-27 16:00:26 +01:00
parent d61eb9c096
commit 7ef316f4f9
11 changed files with 131 additions and 55 deletions

View File

@@ -33,6 +33,7 @@ namespace Flax.Build
case TargetPlatform.PS5:
case TargetPlatform.Android:
case TargetPlatform.Switch:
case TargetPlatform.Mac:
options.OutputFiles.Add(Path.Combine(path, string.Format("lib{0}.a", name)));
break;
default: throw new InvalidPlatformException(options.Platform.Target);

View File

@@ -36,9 +36,9 @@ namespace Flax.Build
case PlatformID.WinCE: return TargetPlatform.Windows;
case PlatformID.Unix:
{
var p = new Process
Process p = new Process
{
StartInfo = new ProcessStartInfo
StartInfo =
{
UseShellExecute = false,
RedirectStandardOutput = true,