mirror of https://github.com/ludocode/mpack
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
541 B
Batchfile
13 lines
541 B
Batchfile
@echo off
|
|
|
|
REM Sets paths for Visual Studio 2017 build tools for amd64. Visual Studio 2019
|
|
REM creates command prompt shortcuts for 2015 and 2019 but not 2017. For 2017,
|
|
REM open a plain command prompt and run this.
|
|
|
|
setlocal enabledelayedexpansion
|
|
|
|
for /f "usebackq tokens=*" %%i in (`"%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" -latest -find **\vcvarsall.bat`) do (SET "vcvarsall=%%i")
|
|
where cl 1>NUL 2>NUL
|
|
if %errorlevel% neq 0 call "%vcvarsall%" amd64 -vcvars_ver=14.16
|
|
if %errorlevel% neq 0 exit /b %errorlevel%
|