gbe_fork/build_win_set_env.bat

63 lines
1.3 KiB
Batchfile

@echo off
setlocal
pushd "%~dp0"
:: Put in the base path in which Visual Studio is installed, examples:
::set "vs_static_path=C:\Program Files\Microsoft Visual Studio\2022\BuildTools"
::set "vs_static_path=C:\Program Files\Microsoft Visual Studio\2022\Community"
::set "vs_static_path=C:\Program Files\Microsoft Visual Studio\2022\Enterprise"
set "vs_static_path="
set "third_party_dir=third-party"
set "arch="
if "%~1"=="32" (
set "arch=32"
) else if "%~1"=="64" (
set "arch=64"
) else (
call :err_msg "First arg may be any of [32 64]"
goto :end_script_with_err
)
set "my_vs_path=%vs_static_path%"
if "%my_vs_path%"=="" (
for /f "tokens=* delims=" %%A in ('"%third_party_dir%\vswhere.exe" -prerelease -latest -nocolor -nologo -property installationPath 2^>nul') do (
set "my_vs_path=%%~A\VC\Auxiliary\Build"
)
)
if not exist "%my_vs_path%\vcvars%arch%.bat" (
set "my_vs_path="
)
if "%my_vs_path%"=="" (
call :err_msg "Visual Studio couldn't be found, set its path in the script %~nx0"
goto :end_script_with_err
)
echo:
echo Using Visual Studio found in: "%my_vs_path%"
popd
endlocal & (
call "%my_vs_path%\vcvars%arch%.bat" && (
exit /b 0
) || (
1>&2 echo [X] Visual Studio script "vcvars%arch%.bat" failed
exit /b 1
)
)
:err_msg
1>&2 echo [X] %~1
exit /b
:end_script_with_err
popd
endlocal & (
exit /b 1
)