Update Qt and libraries

This commit is contained in:
Syping 2020-11-21 17:47:28 +01:00
parent c83067b134
commit 2172e1ba6f
4 changed files with 19 additions and 16 deletions

View File

@ -12,13 +12,13 @@ ENV QT_SYSCONF_DIR /etc/xdg
# Custom Version
ENV CUSTOM_VERSION YES
ENV QT_SERIES 5.15
ENV QT_BUILD 1
ENV QT_BUILD 2
ENV ZLIB_VERSION 1.2.11
ENV LIBPNG_VERSION 1.6.37
ENV LIBJPEGTURBO_VERSION 2.0.5
ENV LIBRESSL_VERSION 3.1.4
ENV OPENSSL_VERSION 1.1.1g
ENV ICU_VERSION 67.1
ENV LIBJPEGTURBO_VERSION 2.0.6
ENV LIBRESSL_VERSION 3.2.2
ENV OPENSSL_VERSION 1.1.1h
ENV ICU_VERSION 68.1
ENV HB_VERSION 2.7.2
# SSL Choice

View File

@ -11,14 +11,14 @@ ENV QT_SYSCONF_DIR /etc/xdg
# Custom Version
ENV CUSTOM_VERSION YES
ENV QT_SERIES 5.15
ENV QT_BUILD 1
ENV QT_SERIES 5.15
ENV QT_BUILD 2
ENV ZLIB_VERSION 1.2.11
ENV LIBPNG_VERSION 1.6.37
ENV LIBJPEGTURBO_VERSION 2.0.5
ENV LIBRESSL_VERSION 3.1.4
ENV OPENSSL_VERSION 1.1.1g
ENV ICU_VERSION 67.1
ENV LIBJPEGTURBO_VERSION 2.0.6
ENV LIBRESSL_VERSION 3.2.2
ENV OPENSSL_VERSION 1.1.1h
ENV ICU_VERSION 68.1
ENV HB_VERSION 2.7.2
# SSL Choice

3
docker_build Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
docker build -t qt-llvm-mingw-docker:shared -f Dockerfile.shared .
docker build -t qt-llvm-mingw-docker:static -f Dockerfile.static .

View File

@ -22,15 +22,15 @@ if [ ! "${CUSTOM_VERSION}" == "YES" ]; then
# Third Party
ZLIB_VERSION=1.2.11
LIBPNG_VERSION=1.6.37
LIBJPEGTURBO_VERSION=2.0.5
LIBRESSL_VERSION=3.1.4
OPENSSL_VERSION=1.1.1g
ICU_VERSION=67.1
LIBJPEGTURBO_VERSION=2.0.6
LIBRESSL_VERSION=3.2.2
OPENSSL_VERSION=1.1.1h
ICU_VERSION=68.1
HB_VERSION=2.7.2 # HarfBuzz
# Qt Framework
QT_SERIES=5.15 # (x.x).y
QT_BUILD=1 # x.x.(y)
QT_BUILD=2 # x.x.(y)
fi
# --------------------------------------