The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
732 B
17 lines
732 B
2 years ago
|
REM SPDX-FileCopyrightText: 2022 Intel Corporation
|
||
|
REM
|
||
|
REM SPDX-License-Identifier: MIT
|
||
|
|
||
|
set URL=%1
|
||
|
set COMPONENTS=%2
|
||
|
|
||
|
curl.exe --output %TEMP%\webimage.exe --url %URL% --retry 5 --retry-delay 5
|
||
|
start /b /wait %TEMP%\webimage.exe -s -x -f webimage_extracted --log extract.log
|
||
|
del %TEMP%\webimage.exe
|
||
|
if "%COMPONENTS%"=="" (
|
||
|
webimage_extracted\bootstrapper.exe -s --action install --eula=accept -p=NEED_VS2017_INTEGRATION=0 -p=NEED_VS2019_INTEGRATION=0 -p=NEED_VS2022_INTEGRATION=0 --log-dir=.
|
||
|
) else (
|
||
|
webimage_extracted\bootstrapper.exe -s --action install --components=%COMPONENTS% --eula=accept -p=NEED_VS2017_INTEGRATION=0 -p=NEED_VS2019_INTEGRATION=0 -p=NEED_VS2022_INTEGRATION=0 --log-dir=.
|
||
|
)
|
||
|
rd /s/q "webimage_extracted"
|