зеркало из https://github.com/dotnet/winforms.git
68 строки
2.3 KiB
Batchfile
68 строки
2.3 KiB
Batchfile
@if not defined _echo @echo off
|
|
|
|
:: Initializes Visual Studio developer environment. If a build architecture is passed
|
|
:: as an argument, it also initializes VC++ build environment and CMakePath.
|
|
|
|
set "__VCBuildArch="
|
|
if /i "%~1" == "x86" (set __VCBuildArch=x86)
|
|
if /i "%~1" == "x64" (set __VCBuildArch=x86_amd64)
|
|
if /i "%~1" == "arm" (set __VCBuildArch=x86_arm)
|
|
if /i "%~1" == "arm64" (set __VCBuildArch=x86_arm64)
|
|
if /i "%~1" == "wasm" (set __VCBuildArch=x86_amd64)
|
|
|
|
:: Default to highest Visual Studio version available that has Visual C++ tools.
|
|
::
|
|
:: For VS2017 and later, multiple instances can be installed on the same box SxS and VS1*0COMNTOOLS
|
|
:: is no longer set as a global environment variable and is instead only set if the user
|
|
:: has launched the Visual Studio Developer Command Prompt.
|
|
::
|
|
:: Following this logic, we will default to the Visual Studio toolset assocated with the active
|
|
:: Developer Command Prompt. Otherwise, we will query VSWhere to locate the later version of
|
|
:: Visual Studio available on the machine. Finally, we will fail the script if no supported
|
|
:: instance can be found.
|
|
|
|
if defined VisualStudioVersion goto :VSDetected
|
|
|
|
set "__VSWhere=%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe"
|
|
set "__VSCOMNTOOLS="
|
|
|
|
if exist "%__VSWhere%" (
|
|
for /f "tokens=*" %%p in (
|
|
'"%__VSWhere%" -latest -prerelease -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64 -property installationPath'
|
|
) do set __VSCOMNTOOLS=%%p\Common7\Tools
|
|
)
|
|
|
|
if not exist "%__VSCOMNTOOLS%" goto :VSMissing
|
|
|
|
:: Make sure the current directory stays intact
|
|
set "VSCMD_START_DIR=%CD%"
|
|
|
|
call "%__VSCOMNTOOLS%\VsDevCmd.bat" -no_logo
|
|
|
|
:: Clean up helper variables
|
|
set "__VSWhere="
|
|
set "__VSCOMNTOOLS="
|
|
set "VSCMD_START_DIR="
|
|
|
|
:VSDetected
|
|
if "%VisualStudioVersion%"=="17.0" (
|
|
set __VSVersion=vs2022
|
|
set __PlatformToolset=v143
|
|
goto :SetVCEnvironment
|
|
)
|
|
|
|
:VSMissing
|
|
echo %__MsgPrefix%Error: Visual Studio 2022 with C++ tools required. ^
|
|
Please see https://github.com/dotnet/runtime/blob/main/docs/workflow/requirements/windows-requirements.md for build requirements.
|
|
exit /b 1
|
|
|
|
:SetVCEnvironment
|
|
|
|
if "%__VCBuildArch%"=="" exit /b 0
|
|
|
|
:: Set the environment for the native build
|
|
call "%VCINSTALLDIR%Auxiliary\Build\vcvarsall.bat" %__VCBuildArch%
|
|
if not "%ErrorLevel%"=="0" exit /b 1
|
|
|
|
set "__VCBuildArch="
|