diff options
author | Jean-Francois Mauguit <jfmauguit@mac.com> | 2024-09-24 09:03:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-24 09:03:25 -0400 |
commit | bab614c421ed7ae329d26bf028c4a3b1d2450f5a (patch) | |
tree | 12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /BuildTools/lib | |
parent | 4bde6044fddf053f31795b9eaccdd2a5a527d21f (diff) | |
parent | 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (diff) | |
download | winamp-bab614c421ed7ae329d26bf028c4a3b1d2450f5a.tar.gz |
Merge pull request #5 from WinampDesktop/community
Merge to main
Diffstat (limited to 'BuildTools/lib')
-rw-r--r-- | BuildTools/lib/intel_ipp_6.1.1.035.7z | bin | 0 -> 84703776 bytes | |||
-rw-r--r-- | BuildTools/lib/microsoft_directx_sdk_2010.7z | bin | 0 -> 1543442 bytes | |||
-rw-r--r-- | BuildTools/lib/unpack_intel_ipp_6.1.1.035.cmd | 35 | ||||
-rw-r--r-- | BuildTools/lib/unpack_microsoft_directx_sdk_2010.cmd | 35 |
4 files changed, 70 insertions, 0 deletions
diff --git a/BuildTools/lib/intel_ipp_6.1.1.035.7z b/BuildTools/lib/intel_ipp_6.1.1.035.7z Binary files differnew file mode 100644 index 00000000..8962bc5e --- /dev/null +++ b/BuildTools/lib/intel_ipp_6.1.1.035.7z diff --git a/BuildTools/lib/microsoft_directx_sdk_2010.7z b/BuildTools/lib/microsoft_directx_sdk_2010.7z Binary files differnew file mode 100644 index 00000000..11890036 --- /dev/null +++ b/BuildTools/lib/microsoft_directx_sdk_2010.7z diff --git a/BuildTools/lib/unpack_intel_ipp_6.1.1.035.cmd b/BuildTools/lib/unpack_intel_ipp_6.1.1.035.cmd new file mode 100644 index 00000000..e5388c95 --- /dev/null +++ b/BuildTools/lib/unpack_intel_ipp_6.1.1.035.cmd @@ -0,0 +1,35 @@ +@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%
\ No newline at end of file diff --git a/BuildTools/lib/unpack_microsoft_directx_sdk_2010.cmd b/BuildTools/lib/unpack_microsoft_directx_sdk_2010.cmd new file mode 100644 index 00000000..965fa01c --- /dev/null +++ b/BuildTools/lib/unpack_microsoft_directx_sdk_2010.cmd @@ -0,0 +1,35 @@ +@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% |