blob: 67d5cdede38f871df5e196906ab0cb99300cea6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
@echo off
SET BASEDIR=%~dp0
if not defined SDKDIR (
echo SDKDIR is not defined.
exit /b 1
)
if not defined PERLDIR (
echo SDKDIR is not defined.
exit /b 1
)
rem SET SDKDIR=z:\VS2019BT\
rem SET PERLDIR=z:\Perl64\
SET QT_VERSION=5.12
SET QT_RELEASE=3
SET QT_FULL_VER=%QT_VERSION%.%QT_RELEASE%
SET QT_SOURCE_ARCHIVE=qt-everywhere-src-%QT_FULL_VER%.zip
SET "DL_URL=https://download.qt.io/official_releases/qt/%QT_VERSION%/%QT_FULL_VER%/single/%QT_SOURCE_ARCHIVE%"
SET SRC_DIR=%BASEDIR%qt-%QT_VERSION%
SET OPENSSL=openssl-1.0.2r
SET OPENSSL_URL=https://www.openssl.org/source/%OPENSSL%.tar.gz"
SET PATH=%BASEDIR%\wintools;%PERLDIR%\bin;%PATH%
if not exist "%OPENSSL%.tar.gz" wget.exe -c "%OPENSSL_URL%
7za.exe x %OPENSSL%.tar.gz -y
if not exist "%OPENSSL%" 7za.exe x %OPENSSL%.tar -y
rem 32 - Bit
SET INST_ARCH=x86-msvc
call %SDKDIR%setvcvars.bat 2019 x86
rem Build OpenSSL
cd %BASEDIR%\%OPENSSL%
call perl Configure VC-WIN32 --prefix=%BASEDIR%/openssl-%INST_ARCH%
call ms\do_ms.bat
call ms\do_nasm.bat
rem Build static lib
call nmake -f ms\nt.mak
call nmake -f ms\nt.mak install
rem Build DLL
call perl Configure VC-WIN32 --prefix=%BASEDIR%/openssl-%INST_ARCH%
call ms\do_ms.bat
call ms\do_nasm.bat
call nmake -f ms\ntdll.mak
call nmake -f ms\ntdll.mak install
cd %BASEDIR%
rem QT
if not exist "%QT_SOURCE_ARCHIVE%" wget.exe -c "%DL_URL%"
if exist %SRC_DIR% (
echo Removing previous build dir %SRC_DIR% ...
del /f /s /q %SRC_DIR% > nul
rmdir /s /q %SRC_DIR%
)
7za.exe x %QT_SOURCE_ARCHIVE% -y
rename qt-everywhere-src-%QT_FULL_VER% qt-%QT_VERSION%
SET PREFIX=%BASEDIR%qt-%QT_VERSION%-%INST_ARCH%\
cd %SRC_DIR%
del config.cache
call .\configure -prefix %PREFIX% -static -shared -mp -platform win32-msvc -release -ssl -nomake examples -nomake tests -skip qtwebengine -qt-zlib -qt-libjpeg -qt-libpng -qt-pcre -qt-freetype -opengl desktop -openssl -I%BASEDIR%\openssl-%INST_ARCH%\include -L%BASEDIR%\openssl-%INST_ARCH%\lib -opensource -confirm-license
call nmake
call nmake install
cd %PREFIX%
%BASEDIR%wintools\7za.exe a -tzip %BASEDIR%\qt-%QT_VERSION%-%INST_ARCH%.zip .\*
cd %BASEDIR%
|