Skip to content

Commit

Permalink
build renewed to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joggyGeorge committed Apr 24, 2021
1 parent 8d354dd commit 535bc58
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 8 deletions.
7 changes: 7 additions & 0 deletions LOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -341,3 +341,10 @@ mac安装步骤:
重写了一下驱动,但没时间多看。。
等驱动搞完,借到mac就在mac上再试试
--4.16
fole,cmake根本跑不起来。。autoconf和automake来回搞。。。
原来是少了一个Libtool
生成了新的dll
但是发给学长更新了nuget后还是没成
暂时不知道原因,感觉要再把整个pj都看看结构再说了
azure\cake\bash\chocolatey\linux\nuget都要去更多的了解
--4.23
2 changes: 1 addition & 1 deletion Wonton.Common/Wonton.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</ItemGroup>

<ItemGroup Condition="!Exists('$(MSBuildThisFileDirectory)..\SharpVLFD\SharpVLFD\SharpVLFD.csproj')">
<PackageReference Include="SharpVLFD" Version="0.4.2" />
<PackageReference Include="SharpVLFD" Version="0.5.0" />
</ItemGroup>

</Project>
16 changes: 9 additions & 7 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -304,24 +304,26 @@ Task("PackageDependency")
Information("Mac:");
var desktop = System.Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
if (desktop == "") Information("Desktop Wrong!");
if (!DirectoryExists(desktop + "gtkwave.app"))
if (!DirectoryExists(desktop + "/gtkwave.app"))
Unzip(gtkWaveZipPath, desktop);

var osxBinDir = desktop + "/gtkwave.app/Contents/MacOS"; // 鼠标点击用
Information("OSX bin path: " + osxBinDir);
var shs = GetFiles(osxBinDir + "/*");
var shs = GetFiles(osxBinDir + "/*");
foreach (var sh in shs)
StartProcess("chmod", new ProcessSettings {Arguments = "+x " + sh});

osxBinDir = desktop + "/gtkwave.app/Contents/Resources/bin"; // 命令行打开用
shs = GetFiles(osxBinDir + "/*");
shs = GetFiles(osxBinDir + "/*");
foreach (var sh in shs)
StartProcess("chmod", new ProcessSettings {Arguments = "+x " + sh});

var app = "/Applications/gtkwave.app";
if(DirectoryExists(app)) DelDir(app);
CreateDirectory(app);
CopyDirectory(desktop + "/gtkwave.app", "/Applications/gtkwave.app");
if(!DirectoryExists(app))
{
CreateDirectory(app);
CopyDirectory(desktop + "/gtkwave.app", "/Applications/gtkwave.app");
}
}

});
Expand Down

0 comments on commit 535bc58

Please sign in to comment.