Skip to content

Commit

Permalink
Minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
shimat committed Dec 21, 2013
1 parent ae667cd commit 6152cc2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/OpenCvSharp.Gpu/StereoBM_GPU.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ static StereoBM_GPU()
PInvokeHelper.DllImportError(e);
throw;
}
catch (Exception e)
catch (Exception)
{
throw;
}
Expand Down
6 changes: 2 additions & 4 deletions src/OpenCvSharp.ReleaseMaker/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ private void button_Make_Click(object sender, EventArgs e)
@"OpenCvSharp.UserInterface\bin\Release\OpenCvSharp.UserInterface.dll",
//"OpenCvSharp.Gpu.dll",
@"OpenCvSharp.DebuggerVisualizers\bin\Release\OpenCvSharp.DebuggerVisualizers.dll",
//"OpenCvSharp.DebuggerVisualizers.dll",
//"OpenCvSharpExtern.dll",
};

Expand Down Expand Up @@ -177,7 +176,6 @@ private void MakeBinaryPackage(string dir, string dirDst, string version)
// OpenCvSharpExtern.dllを選択
{
string pfExtern = (pf == "x86") ? "Win32" : "x64";
// 2010を標準添付
{
string externDir = Path.Combine(dirSrc, Path.Combine("Release", pfExtern));
string externFile = Path.Combine(externDir, "OpenCvSharpExtern.dll");
Expand All @@ -188,8 +186,8 @@ private void MakeBinaryPackage(string dir, string dirDst, string version)

// テキストを選択
{
ZipEntry e1 = zf.AddFile(Path.Combine(dir, "LICENSE"));
e1.FileName = Path.GetFileName("LICENSE");
ZipEntry e1 = zf.AddFile(Path.Combine(dir, "LICENSE.txt"));
e1.FileName = Path.GetFileName("LICENSE.txt");
ZipEntry e2 = zf.AddFile(Path.Combine(dir, "README.md"));
e2.FileName = Path.GetFileName("README.md");
}
Expand Down

0 comments on commit 6152cc2

Please sign in to comment.