package-artifacts.cmd 423 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
REM Create an archive from the built binaries and required libraries (DLLs).
REM For users' convenience, we also include the libusb "listdevs.exe" and our
REM markdown documentation/license.
REM AppVeyor will run this as "after_build" step.

mkdir dist
set FILES=*.exe *.md
set FILES=%FILES% .\libusb\MinGW32\dll\*.dll
set FILES=%FILES% .\libusb\examples\bin32\listdevs.exe
7z a dist\sunxi-tools-win32.7z %FILES%