Delete BuildTools/lib directory

This commit is contained in:
Xenon 2024-09-28 22:58:35 +01:00 committed by GitHub
parent bf66722acb
commit 5e6e497ff7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 0 additions and 70 deletions

View File

@ -1,35 +0,0 @@
@if not exist "c:\Program Files\7-Zip\7z.exe" goto missing7-Zip
SET PATH=c:\Program Files\7-Zip\;%PATH%
SET LIBIPPFILENAME=intel_ipp_6.1.1.035.7z
SET LIBIPPFOLDER=intel_ipp_6.1.1.035
@echo ************************************
@echo * Unpack Intel IPP 6.1.1.035 for VS 2019 (%LIBIPPFILENAME%)
@echo ************************************
@if exist ..\%LIBIPPFOLDER% goto existlibipp
call 7z.exe x -y %LIBIPPFILENAME% -o../../../external_dependencies/
@pause
goto :exit
:missing7-Zip
@echo 7-Zip archive tool not detected.
@pause
@exit
goto :eof
:existlibipp
@echo intel_ipp_6.1.1.035 for VS 2019 folder already exists. Unpack operation is aborted.
@pause
@exit
goto :eof
::-----------------------------------------------------------------------------
:: EXIT
::-----------------------------------------------------------------------------
:exit
endlocal & exit /b %rc%

View File

@ -1,35 +0,0 @@
@if not exist "c:\Program Files\7-Zip\7z.exe" goto missing7-Zip
SET PATH=c:\Program Files\7-Zip\;%PATH%
SET DIRECTXFILENAME=microsoft_directx_sdk_2010.7z
SET DIRECTXFOLDER=microsoft_directx_sdk_2010
@echo ************************************
@echo * Unpack Microsoft DirectX SDK (June 2010) (%DIRECTXFILENAME%)
@echo ************************************
@if exist ..\%DIRECTXFOLDER% goto existdirectx
call 7z.exe x -y %DIRECTXFILENAME% -o../../../external_dependencies/
@pause
goto :exit
:missing7-Zip
@echo 7-Zip archive tool not detected.
@pause
@exit
goto :eof
:existdirectx
@echo Microsoft DirectX SDK (June 2010) folder already exists. Unpack operation is aborted.
@pause
@exit
goto :eof
::-----------------------------------------------------------------------------
:: EXIT
::-----------------------------------------------------------------------------
:exit
endlocal & exit /b %rc%