Mercurial > hg > vamp-plugin-pack
view deploy/clean-build-and-package.bat @ 77:cf0f2f566c0c
Mac layout tweaks
author | Chris Cannam |
---|---|
date | Tue, 18 Feb 2020 14:13:45 +0000 |
parents | 58e766558fac |
children | 12bf881f9f9f |
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 call .\deploy\win64\build-and-package.bat sign if %errorlevel% neq 0 exit /b %errorlevel% mkdir packages copy build_win64\vamp-plugin-pack.msi packages\vamp-plugin-pack-%VERSION%-win64.msi @echo( @echo Done