summaryrefslogtreecommitdiffstats
path: root/buildqt32.bat
diff options
context:
space:
mode:
Diffstat (limited to 'buildqt32.bat')
-rwxr-xr-xbuildqt32.bat7
1 files changed, 5 insertions, 2 deletions
diff --git a/buildqt32.bat b/buildqt32.bat
index d7d3c97..67d5cde 100755
--- a/buildqt32.bat
+++ b/buildqt32.bat
@@ -35,13 +35,16 @@ call %SDKDIR%setvcvars.bat 2019 x86
rem Build OpenSSL
cd %BASEDIR%\%OPENSSL%
-call perl Configure VC-WIN32 --prefix=%BASEDIR%/openssl/%INSTARCH%
+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
@@ -61,7 +64,7 @@ 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\%INSTARCH%\include -L%BASEDIR%\openssl\%INSTARCH%\lib -opensource -confirm-license
+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%