static TizenSDKUtilities()
 {
     if (PlatformUtils.IsLinux())
     {
         SDKDirectory = new NPath(NPath.HomeDirectory + "/tizen-2.4.0-linux");
     }
     else
     {
         if (!PlatformUtils.IsOSX())
         {
             throw new NotSupportedException("Building Tizen on Windows is not supported.");
         }
         SDKDirectory = new NPath(NPath.HomeDirectory + "/tizen-2.4.0-macosx");
     }
 }
Пример #2
0
 public override bool CanBuildInCurrentEnvironment() =>
 (PlatformUtils.IsLinux() || PlatformUtils.IsOSX());