1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
@ECHO off
"%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere" -latest -property installationPath > vcpath.txt
set /p vcpath=<vcpath.txt
del vcpath.txt
call "%vcpath%\VC\Auxiliary\Build\vcvarsall.bat" x64
cd ..\libmpdec
if exist Makefile nmake clean
cd ..\libmpdec++
if exist Makefile nmake clean
cd ..\tests
if exist Makefile nmake clean
cd ..\tests++
if exist Makefile nmake clean
cd ..\vcbuild
if exist dist64 rd /q /s dist64
if exist dist32 rd /q /s dist32
if exist dist_arm64 rd /q /s dist_arm64
if exist dist_arm32 rd /q /s dist_arm32
|