2015-11-17 12:10:19 -08:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Diagnostics;
|
|
|
|
using System.IO;
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
using Microsoft.Dnx.Runtime.Common.CommandLine;
|
|
|
|
using Microsoft.DotNet.Cli.Utils;
|
|
|
|
using Microsoft.DotNet.Tools.Common;
|
|
|
|
|
|
|
|
namespace Microsoft.DotNet.Tools.Compiler.Native
|
|
|
|
{
|
|
|
|
public class MacCppCompileStep : IPlatformNativeStep
|
|
|
|
{
|
2015-11-17 13:20:34 -08:00
|
|
|
public MacCppCompileStep(NativeCompileSettings config)
|
2015-11-17 12:10:19 -08:00
|
|
|
{
|
|
|
|
throw new NotImplementedException("Mac Cpp Not Supported Yet");
|
|
|
|
}
|
|
|
|
|
2015-11-17 19:50:19 -08:00
|
|
|
public int Invoke()
|
2015-11-17 12:10:19 -08:00
|
|
|
{
|
|
|
|
throw new NotImplementedException("mac cpp Not supported yet.");
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool CheckPreReqs()
|
|
|
|
{
|
|
|
|
throw new NotImplementedException("mac cpp Not supported yet.");
|
|
|
|
}
|
|
|
|
|
2015-11-17 13:20:34 -08:00
|
|
|
public string DetermineOutputFile(NativeCompileSettings config)
|
2015-11-17 12:10:19 -08:00
|
|
|
{
|
|
|
|
throw new NotImplementedException("Mac cpp Not supported yet.");
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool RequiresLinkStep()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|