Mercurial > hg > vamp-plugin-pack
view deploy/clean-build-and-package.bat @ 111:fe176cd5280c
Various updates to add Azi metadata + ensure it gets installed
author | Chris Cannam |
---|---|
date | Fri, 06 Mar 2020 10:47:39 +0000 |
parents | 12bf881f9f9f |
children | 732a4bf233df |
line wrap: on
line source
@rem Run this from within the top-level dir: deploy\clean-build-and-package @echo on @set /p VERSION=<version.h @set VERSION=%VERSION:#define PACK_VERSION "=% set VERSION=%VERSION:"=% @echo( @set YN=y @set /p YN="Proceed to clean, rebuild, package, and sign version %VERSION% [Yn] ?" @if "%YN%" == "Y" set YN=y @if "%YN%" neq "y" exit /b 3 @echo Proceeding del /q /s build_win64 call .\deploy\win64\build-64.bat sign if %errorlevel% neq 0 exit /b %errorlevel% mkdir packages copy "build_win64\release\Vamp Plugin Pack Installer.exe" "packages\Vamp Plugin Pack Installer %VERSION%.exe" @echo( @echo Done