| Server IP : 121.121.20.254 / Your IP : 216.73.217.141 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Program Files (x86)/Microsoft Visual Studio/18/BuildTools/VC/vcpkg/ |
Upload File : |
@echo off
:: Generate 30 bits of randomness, to avoid clashing with concurrent executions.
SET /A Z_VCPKG_POSTSCRIPT=%RANDOM% * 32768 + %RANDOM%
:: Set a temporary postscript path
SET Z_VCPKG_POSTSCRIPT=%TEMP%\VCPKG_tmp_%Z_VCPKG_POSTSCRIPT%.cmd
:: Actually run vcpkg and save its exit code
"%~dp0\vcpkg.exe" %*
SET Z_VCPKG_ERRORLEVEL=%ERRORLEVEL%
:: If vcpkg wanted to make any environment changes, make them
IF EXIST "%Z_VCPKG_POSTSCRIPT%" (
CALL "%Z_VCPKG_POSTSCRIPT%"
DEL "%Z_VCPKG_POSTSCRIPT%"
)
:: Cleanup
SET Z_VCPKG_POSTSCRIPT=
EXIT /B %Z_VCPKG_ERRORLEVEL%