mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-02-16 12:05:38 +00:00
(Windows) Added in-tree dependencies build scripts for MSVC.
This commit is contained in:
parent
662db54f97
commit
b7d71693f8
62
tools/Windows_dependencies_build_MSVC.bat
Normal file
62
tools/Windows_dependencies_build_MSVC.bat
Normal file
|
@ -0,0 +1,62 @@
|
|||
:: SPDX-License-Identifier: MIT
|
||||
::
|
||||
:: EmulationStation Desktop Edition
|
||||
:: Windows_dependencies_build_MSVC.bat
|
||||
::
|
||||
:: Builds the external dependencies in-tree using MSVC.
|
||||
:: The Windows_dependencies_setup_MSVC.bat script must have been executed before this one.
|
||||
:: All libraries will be recompiled from scratch every time.
|
||||
::
|
||||
:: This script needs to run from the root of the repository.
|
||||
::
|
||||
@echo off
|
||||
|
||||
if not exist .clang-format (
|
||||
echo You need to run this script from the root of the repository.
|
||||
goto end
|
||||
)
|
||||
|
||||
if not exist external\pugixml\ (
|
||||
echo You need to first run tools\Windows_dependencies_setup_MSVC.bat to download and configure the dependencies.
|
||||
goto end
|
||||
)
|
||||
|
||||
echo Building all dependencies in the .\external directory...
|
||||
echo:
|
||||
|
||||
cd external
|
||||
|
||||
echo Building FreeType
|
||||
|
||||
cd freetype2\build
|
||||
if exist CMakeCache.txt (
|
||||
nmake clean
|
||||
del CMakeCache.txt
|
||||
)
|
||||
|
||||
cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON ..
|
||||
nmake
|
||||
copy /Y freetype.dll ..\..\..\
|
||||
copy /Y freetype.lib ..\..\..\
|
||||
cd ..\..
|
||||
|
||||
echo:
|
||||
echo Building pugixml
|
||||
|
||||
cd pugixml
|
||||
|
||||
if exist CMakeCache.txt (
|
||||
nmake clean
|
||||
del CMakeCache.txt
|
||||
)
|
||||
|
||||
cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON .
|
||||
nmake
|
||||
copy /Y pugixml.dll ..\..
|
||||
copy /Y pugixml.lib ..\..
|
||||
cd..
|
||||
|
||||
:: Return to the root of the repository.
|
||||
cd ..
|
||||
|
||||
:end
|
169
tools/Windows_dependencies_setup_MSVC.bat
Normal file
169
tools/Windows_dependencies_setup_MSVC.bat
Normal file
|
@ -0,0 +1,169 @@
|
|||
:: SPDX-License-Identifier: MIT
|
||||
::
|
||||
:: EmulationStation Desktop Edition
|
||||
:: Windows_dependencies_setup_MSVC.bat
|
||||
::
|
||||
:: Downloads and prepares the external dependencies for building in-tree using MSVC.
|
||||
:: If the directories already exist they will be removed and the libraries will be downloaded again.
|
||||
::
|
||||
:: This script needs to run from the root of the repository and 7z.exe and curl.exe need to be
|
||||
:: reachable via the Path environment variable.
|
||||
::
|
||||
@echo off
|
||||
|
||||
if not exist .clang-format (
|
||||
echo You need to run this script from the root of the repository.
|
||||
goto end
|
||||
)
|
||||
|
||||
where /Q 7z.exe
|
||||
if %ERRORLEVEL% neq 0 (
|
||||
echo Can't find 7z.exe and it's required by this script, aborting.
|
||||
goto end
|
||||
)
|
||||
|
||||
where /Q curl.exe
|
||||
if %ERRORLEVEL% neq 0 (
|
||||
echo Can't find curl.exe and it's required by this script, aborting.
|
||||
goto end
|
||||
)
|
||||
|
||||
echo Setting up dependencies in the .\external directory...
|
||||
echo:
|
||||
|
||||
cd external
|
||||
|
||||
echo Setting up cURL
|
||||
|
||||
if exist curl-7.80.0-win64-mingw\ (
|
||||
rmdir /S /Q curl-7.80.0-win64-mingw
|
||||
)
|
||||
|
||||
curl -O https://curl.se/windows/dl-7.80.0_2/curl-7.80.0_2-win64-mingw.zip
|
||||
7z x curl-7.80.0_2-win64-mingw.zip
|
||||
cd curl-7.80.0-win64-mingw\bin
|
||||
|
||||
dumpbin /exports libcurl-x64.dll > exports.txt
|
||||
echo LIBRARY libcurl-x64 > libcurl-x64.def
|
||||
echo EXPORTS >> libcurl-x64.def
|
||||
for /f "skip=19 tokens=4" %%A in (exports.txt) do echo %%A >> libcurl-x64.def
|
||||
lib /def:libcurl-x64.def /out:libcurl-x64.lib /machine:x64
|
||||
|
||||
copy /Y libcurl-x64.dll ..\..\..
|
||||
copy /Y libcurl-x64.lib ..\..\..
|
||||
cd ..\..
|
||||
|
||||
echo:
|
||||
echo Setting up GLEW
|
||||
|
||||
if exist glew-2.1.0\ (
|
||||
rmdir /S /Q glew-2.1.0
|
||||
)
|
||||
|
||||
curl -LO https://downloads.sourceforge.net/project/glew/glew/2.1.0/glew-2.1.0-win32.zip
|
||||
7z x glew-2.1.0-win32.zip
|
||||
copy /Y glew-2.1.0\bin\Release\x64\glew32.dll ..
|
||||
copy /Y glew-2.1.0\lib\Release\x64\glew32.lib ..
|
||||
|
||||
echo:
|
||||
echo Setting up FreeType
|
||||
|
||||
if exist freetype2\ (
|
||||
rmdir /S /Q freetype2
|
||||
)
|
||||
|
||||
git clone git://git.savannah.gnu.org/freetype/freetype2.git
|
||||
cd freetype2
|
||||
git checkout VER-2-10-4
|
||||
mkdir build
|
||||
cd ..
|
||||
|
||||
echo:
|
||||
echo Setting up FreeImage
|
||||
|
||||
if exist FreeImage\ (
|
||||
rmdir /S /Q FreeImage
|
||||
)
|
||||
|
||||
curl -LO https://downloads.sourceforge.net/project/freeimage/Binary%%20Distribution/3.18.0/FreeImage3180Win32Win64.zip
|
||||
7z x FreeImage3180Win32Win64.zip
|
||||
copy /Y FreeImage\Dist\x64\FreeImage.dll ..
|
||||
copy /Y FreeImage\Dist\x64\FreeImage.lib ..
|
||||
|
||||
echo:
|
||||
echo Setting up pugixml
|
||||
|
||||
if exist pugixml\ (
|
||||
rmdir /S /Q pugixml
|
||||
)
|
||||
|
||||
git clone git://github.com/zeux/pugixml.git
|
||||
cd pugixml
|
||||
git checkout v1.10
|
||||
cd ..
|
||||
|
||||
echo:
|
||||
echo Setting up SDL
|
||||
|
||||
if exist SDL2-2.0.18\ (
|
||||
rmdir /S /Q SDL2-2.0.18
|
||||
)
|
||||
|
||||
curl -O https://www.libsdl.org/release/SDL2-devel-2.0.18-VC.zip
|
||||
7z x SDL2-devel-2.0.18-VC.zip
|
||||
cd SDL2-2.0.18
|
||||
rename include SDL2
|
||||
cd ..
|
||||
copy /Y SDL2-2.0.18\lib\x64\SDL2.dll ..
|
||||
copy /Y SDL2-2.0.18\lib\x64\SDL2.lib ..
|
||||
copy /Y SDL2-2.0.18\lib\x64\SDL2main.lib ..
|
||||
|
||||
echo:
|
||||
echo Setting up FFmpeg
|
||||
|
||||
if exist ffmpeg-n4.4-latest-win64-gpl-shared-4.4\ (
|
||||
rmdir /S /Q ffmpeg-n4.4-latest-win64-gpl-shared-4.4
|
||||
)
|
||||
|
||||
curl -LO https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/ffmpeg-n4.4-latest-win64-gpl-shared-4.4.zip
|
||||
7z x ffmpeg-n4.4-latest-win64-gpl-shared-4.4.zip
|
||||
copy /Y ffmpeg-n4.4-latest-win64-gpl-shared-4.4\bin\avcodec-58.dll ..
|
||||
copy /Y ffmpeg-n4.4-latest-win64-gpl-shared-4.4\bin\avfilter-7.dll ..
|
||||
copy /Y ffmpeg-n4.4-latest-win64-gpl-shared-4.4\bin\avformat-58.dll ..
|
||||
copy /Y ffmpeg-n4.4-latest-win64-gpl-shared-4.4\bin\avutil-56.dll ..
|
||||
copy /Y ffmpeg-n4.4-latest-win64-gpl-shared-4.4\bin\postproc-55.dll ..
|
||||
copy /Y ffmpeg-n4.4-latest-win64-gpl-shared-4.4\bin\swresample-3.dll ..
|
||||
copy /Y ffmpeg-n4.4-latest-win64-gpl-shared-4.4\bin\swscale-5.dll ..
|
||||
copy /Y ffmpeg-n4.4-latest-win64-gpl-shared-4.4\lib\avcodec.lib ..
|
||||
copy /Y ffmpeg-n4.4-latest-win64-gpl-shared-4.4\lib\avfilter.lib ..
|
||||
copy /Y ffmpeg-n4.4-latest-win64-gpl-shared-4.4\lib\avformat.lib ..
|
||||
copy /Y ffmpeg-n4.4-latest-win64-gpl-shared-4.4\lib\avutil.lib ..
|
||||
copy /Y ffmpeg-n4.4-latest-win64-gpl-shared-4.4\lib\swresample.lib ..
|
||||
copy /Y ffmpeg-n4.4-latest-win64-gpl-shared-4.4\lib\swscale.lib ..
|
||||
|
||||
echo:
|
||||
echo Setting up OpenSSL
|
||||
|
||||
if not exist "C:\Program Files\OpenSSL-Win64\libcrypto-1_1-x64.dll" (
|
||||
curl -O https://slproweb.com/download/Win64OpenSSL_Light-1_1_1m.msi
|
||||
:: Run the installer.
|
||||
.\Win64OpenSSL_Light-1_1_1m.msi
|
||||
)
|
||||
|
||||
:: Return to the root of the repository.
|
||||
cd ..
|
||||
|
||||
if exist "C:\Program Files\OpenSSL-Win64\libcrypto-1_1-x64.dll" (
|
||||
copy /Y "C:\Program Files\OpenSSL-Win64\libcrypto-1_1-x64.dll"
|
||||
copy /Y "C:\Program Files\OpenSSL-Win64\libssl-1_1-x64.dll"
|
||||
)
|
||||
|
||||
echo:
|
||||
echo Copying DLL files from Windows\System32
|
||||
|
||||
copy /Y C:\Windows\System32\MSVCP140.dll
|
||||
copy /Y C:\Windows\System32\VCOMP140.DLL
|
||||
copy /Y C:\Windows\System32\VCRUNTIME140.dll
|
||||
copy /Y C:\Windows\System32\VCRUNTIME140_1.dll
|
||||
|
||||
:end
|
Loading…
Reference in a new issue