mirror of
https://github.com/cc65/cc65.git
synced 2025-02-28 20:29:46 +00:00
Don't use hardcoded Visual Studio installation path in msbuild.cmd.
This commit is contained in:
parent
9b9e955eb1
commit
148942ff1d
@ -1,18 +1,23 @@
|
|||||||
@echo off
|
@echo off
|
||||||
|
setlocal
|
||||||
|
|
||||||
if exist "C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\Common7\Tools\VsDevCmd.bat" goto vs2017
|
where msbuild.exe 1>nul 2>&1 && goto :ready
|
||||||
if exist "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\VsDevCmd.bat" goto vs2019
|
|
||||||
|
|
||||||
echo Error: VsDevCmd.bat not found!
|
set VSWHERE_PATH=%ProgramFiles%\Microsoft Visual Studio\Installer\vswhere.exe
|
||||||
goto:eof
|
if not exist "%VSWHERE_PATH%" set VSWHERE_PATH=%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe
|
||||||
|
if not exist "%VSWHERE_PATH%" goto :error
|
||||||
|
for /f "usebackq delims=#" %%a in (`"%VSWHERE_PATH%" -latest -property installationPath`) do set VSDEVCMD_PATH=%%a\Common7\Tools\VsDevCmd.bat
|
||||||
|
if not exist "%VSDEVCMD_PATH%" goto :error
|
||||||
|
set VSCMD_SKIP_SENDTELEMETRY=1
|
||||||
|
call "%VSDEVCMD_PATH%" -no_logo -startdir=none
|
||||||
|
|
||||||
:vs2017
|
where msbuild.exe 1>nul 2>&1 && goto :ready
|
||||||
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\Common7\Tools\VsDevCmd.bat"
|
|
||||||
goto run
|
|
||||||
|
|
||||||
:vs2019
|
:error
|
||||||
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\VsDevCmd.bat"
|
|
||||||
goto run
|
echo Error: Can't find MSBuild.
|
||||||
|
exit /b 1
|
||||||
|
|
||||||
|
:ready
|
||||||
|
|
||||||
:run
|
|
||||||
msbuild.exe %*
|
msbuild.exe %*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user