1234567891011121314151617181920 |
- set "arch=x64" & @rem "x86" or "x64"
- set "cfg=Release" & @rem "Debug" or "Release"
- set "vcvarsall=C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Auxiliary\Build\vcvarsall.bat"
- if not "%~1"=="" set "retarget=,PlatformToolset=%1"
- set "VSCMD_START_DIR=%~dp0\..\visualc\VS2010"
- "%vcvarsall%" x64 && ^
- msbuild /t:Rebuild /p:Configuration=%cfg%%retarget% /m mbedTLS.sln
|