45 lines
986 B
Batchfile
45 lines
986 B
Batchfile
echo off
|
|
call C:\"Program Files (x86)"\"Microsoft Visual Studio"\2022\BuildTools\VC\Auxiliary\Build\vcvarsamd64_x86.bat
|
|
call C:\"Program Files"\"Microsoft Visual Studio"\2022\Community\VC\Auxiliary\Build\vcvars64.bat"
|
|
|
|
echo on
|
|
rmdir /Q /S build
|
|
rmdir /Q /S msvc\.vs
|
|
cd wxWidgets
|
|
rmdir /Q /S build\msw\vc_x64_mswu
|
|
rmdir /Q /S build\msw\vc_x64_mswud
|
|
rmdir /Q /S lib\vc_x64_lib
|
|
cd ..
|
|
echo check to see that everything is cleaned
|
|
git clean -xdn
|
|
cd wxWidgets
|
|
git clean -xdn
|
|
cd ..
|
|
PAUSE
|
|
|
|
|
|
echo on
|
|
cd wxWidgets\build\msw
|
|
msbuild wx_vc17.sln -m -p:Configuration=Debug;Platform=x64;PlatformToolset=v143;WindowsTargetPlatformVersion=10.0
|
|
echo off
|
|
IF %ERRORLEVEL% NEQ 0 (
|
|
PAUSE
|
|
GOTO:EOF
|
|
)
|
|
echo on
|
|
cd ..\..\..
|
|
msbuild msvc/wallet.sln -p:Configuration=Debug;Platform=x64 -m
|
|
echo off
|
|
IF %ERRORLEVEL% NEQ 0 (
|
|
PAUSE
|
|
GOTO:EOF
|
|
)
|
|
echo on
|
|
.\build\Debug\wallet.exe --complete --test
|
|
echo off
|
|
IF %ERRORLEVEL% NEQ 0 (
|
|
echo failed unit test on debug build
|
|
) ELSE (
|
|
echo passed unit test on debug build
|
|
)
|