Skip to content

Commit

Permalink
Script to package Windows file from local.
Browse files Browse the repository at this point in the history
  • Loading branch information
codecop committed Oct 5, 2020
1 parent 448fcbe commit 35b7743
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,6 @@ _test.bat

# Approval generated files
*.received.*

# Binaries
Binaries_*.zip
18 changes: 18 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="Package" basedir="." default="zip">

<property name="zip-name" value="Binaries_Windows_x64.zip"/>

<target name="zip" description="Create binary package">
<delete file="${zip-name}" />
<zip destfile="${zip-name}">
<zipfileset dir=".">
<include name="bin\*.dll" />
<include name="include\*.h" />
<include name="lib\*.a" />
<include name="LICENSE" />
</zipfileset>
</zip>
</target>

</project>

0 comments on commit 35b7743

Please sign in to comment.