1@echo off
2rem Downloads and build sources for libraries we depend upon
3
4goto Run
5:Usage
6echo.%~nx0 [flags and arguments]
7echo.
8echo.Download and build OpenSSL. This should only be performed in order to
9echo.update the binaries kept online - in most cases, the files downloaded
10echo.by the get_externals.bat script are sufficient for building CPython.
11echo.
12echo.Available flags:
13echo.  -h  Display this help message
14echo.
15echo.Available arguments:
16echo.  --certificate (-c)   The signing certificate to use for binaries.
17echo.  --organization       The github organization to obtain sources from.
18echo.
19exit /b 127
20
21:Run
22setlocal
23if "%PCBUILD%"=="" (set PCBUILD=%~dp0)
24if "%EXTERNALS_DIR%"=="" (set EXTERNALS_DIR=%PCBUILD%\..\externals)
25
26set ORG_SETTING=
27
28:CheckOpts
29if "%~1"=="-h" shift & goto Usage
30if "%~1"=="--certificate" (set SigningCertificate=%~2) && shift && shift & goto CheckOpts
31if "%~1"=="-c" (set SigningCertificate=%~2) && shift && shift & goto CheckOpts
32if "%~1"=="--organization" (set ORG_SETTING=--organization "%~2") && shift && shift && goto CheckOpts
33
34if "%~1"=="" goto Build
35echo Unrecognized option: %1
36goto Usage
37
38:Build
39call "%PCBUILD%\find_msbuild.bat" %MSBUILD%
40if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2)
41
42call "%PCBUILD%\find_python.bat" "%PYTHON%"
43if ERRORLEVEL 1 (echo Cannot locate python.exe on PATH or as PYTHON variable & exit /b 3)
44
45call "%PCBUILD%\get_externals.bat" --openssl-src --no-openssl %ORG_SETTING%
46
47if "%PERL%" == "" where perl > "%TEMP%\perl.loc" 2> nul && set /P PERL= <"%TEMP%\perl.loc" & del "%TEMP%\perl.loc"
48if "%PERL%" == "" (echo Cannot locate perl.exe on PATH or as PERL variable & exit /b 4)
49
50%MSBUILD% "%PCBUILD%\openssl.vcxproj" /p:Configuration=Release /p:Platform=Win32
51if errorlevel 1 exit /b
52%MSBUILD% "%PCBUILD%\openssl.vcxproj" /p:Configuration=Release /p:Platform=x64
53if errorlevel 1 exit /b
54%MSBUILD% "%PCBUILD%\openssl.vcxproj" /p:Configuration=Release /p:Platform=ARM
55if errorlevel 1 exit /b
56%MSBUILD% "%PCBUILD%\openssl.vcxproj" /p:Configuration=Release /p:Platform=ARM64
57if errorlevel 1 exit /b
58
59