summaryrefslogtreecommitdiffstats
path: root/buildqt64.bat
diff options
context:
space:
mode:
authorJoerg Koenig <Joerg.Koenig@techsat.com>2019-05-13 06:42:28 (GMT)
committerJoerg Koenig <Joerg.Koenig@techsat.com>2019-05-13 06:42:28 (GMT)
commitbc3a2ae0c9ca2073167d8cadc50abf1cf9caed56 (patch)
tree10b58c668924792b13630fc3f39e0ca9ae1a3da2 /buildqt64.bat
parent651525b31431a0bba8ba94e9d02ab97695946ee0 (diff)
downloadQt-bc3a2ae0c9ca2073167d8cadc50abf1cf9caed56.zip
Qt-bc3a2ae0c9ca2073167d8cadc50abf1cf9caed56.tar.gz
Qt-bc3a2ae0c9ca2073167d8cadc50abf1cf9caed56.tar.bz2
Fixed working directories
Change-Id: Ia2e2a13581884bcf23a5d7aeef2325e83edf70a8
Diffstat (limited to 'buildqt64.bat')
-rwxr-xr-xbuildqt64.bat6
1 files changed, 3 insertions, 3 deletions
diff --git a/buildqt64.bat b/buildqt64.bat
index 292f46a..87c8313 100755
--- a/buildqt64.bat
+++ b/buildqt64.bat
@@ -36,13 +36,13 @@ call "%SDKDIR%\setvcvars.bat" 2019 x64
rem - static -
cd %OPENSSL%
-call perl Configure VC-WIN64A --prefix=%BASEDIR%openssl\%INST_ARCH%
+call perl Configure VC-WIN64A --prefix=%BASEDIR%openssl-%INST_ARCH%
call ms\do_win64a
call nmake -f ms\nt.mak
call nmake -f ms\nt.mak install
rem - shared -
cd %OPENSSL%
-call perl Configure VC-WIN64A --prefix=%BASEDIR%openssl\%INST_ARCH%
+call perl Configure VC-WIN64A --prefix=%BASEDIR%openssl-%INST_ARCH%
call ms\do_win64a
call nmake -f ms\ntdll.mak
call nmake -f ms\ntdll.mak install
@@ -63,7 +63,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% -mp -static -shared -platform win32-msvc -release -nomake examples -nomake tests -skip qtdoc -skip qtgamepad -skip qtwebengine -ssl -openssl -I%BASEDIR%openssl\%INST_ARCH%\include -L%BASEDIR%openssl\%INST_ARCH%\lib -opensource -qt-zlib -qt-libjpeg -qt-libpng -qt-pcre -qt-freetype -opengl desktop -confirm-license
+call .\configure -prefix %PREFIX% -mp -static -shared -platform win32-msvc -release -nomake examples -nomake tests -skip qtdoc -skip qtgamepad -skip qtwebengine -ssl -openssl -I%BASEDIR%openssl-%INST_ARCH%\include -L%BASEDIR%openssl-%INST_ARCH%\lib -opensource -qt-zlib -qt-libjpeg -qt-libpng -qt-pcre -qt-freetype -opengl desktop -confirm-license
call nmake
call nmake install
cd %PREFIX%