5.6.2 compile with openssl (1.0.2.l)

This commit is contained in:
kleuter 2017-10-17 22:49:21 +02:00
parent 15443a4cab
commit 315d294aca
4 changed files with 41 additions and 4 deletions

View File

@ -2,13 +2,17 @@ x86:
1. Запускаем qt5vars.cmd 1. Запускаем qt5vars.cmd
2. cd qtbase 2. cd qtbase
configure -opensource -opengl desktop -mp -nomake tests -nomake examples -target xp configure -opensource -opengl desktop -mp -nomake tests -nomake examples -target xp -I "%cd%\openssl" -openssl-linked OPENSSL_LIBS_DEBUG="%cd%\openssl\debug\ssleay32.lib %cd%\openssl\debug\libeay32.lib" OPENSSL_LIBS_RELEASE="%cd%\openssl\release\ssleay32.lib %cd%\openssl\release\libeay32.lib"
nmake nmake
3. cd ..\qttools 3. cd ..\qttools
qmake qmake
nmake nmake
XXX. cd ..\qtwinextras
qmake
nmake
4. cd ..\qtbase 4. cd ..\qtbase
nmake docs nmake docs
cd ..\qttools cd ..\qttools
@ -21,10 +25,14 @@ x64:
1. Запускаем qt5vars_x64.cmd 1. Запускаем qt5vars_x64.cmd
2. cd qtbase 2. cd qtbase
configure -opensource -opengl desktop -mp -nomake tests -nomake examples -target xp configure -opensource -opengl desktop -mp -nomake tests -nomake examples -target xp -I "%cd%\openssl_x64" -openssl-linked OPENSSL_LIBS_DEBUG="%cd%\openssl_x64\debug\ssleay32.lib %cd%\openssl_x64\debug\libeay32.lib" OPENSSL_LIBS_RELEASE="%cd%\openssl_x64\release\ssleay32.lib %cd%\openssl_x64\release\libeay32.lib"
nmake nmake
3. cd .. 3. cd ..\qttools
qmake
nmake
4. cd ..
cleanup.bat cleanup.bat

View File

@ -83,7 +83,7 @@ QMAKE_EXTENSION_STATICLIB = lib
QMAKE_LIBS_CORE = kernel32.lib user32.lib shell32.lib uuid.lib ole32.lib advapi32.lib ws2_32.lib QMAKE_LIBS_CORE = kernel32.lib user32.lib shell32.lib uuid.lib ole32.lib advapi32.lib ws2_32.lib
QMAKE_LIBS_GUI = gdi32.lib comdlg32.lib oleaut32.lib imm32.lib winmm.lib ws2_32.lib ole32.lib user32.lib advapi32.lib QMAKE_LIBS_GUI = gdi32.lib comdlg32.lib oleaut32.lib imm32.lib winmm.lib ws2_32.lib ole32.lib user32.lib advapi32.lib
QMAKE_LIBS_NETWORK = ws2_32.lib QMAKE_LIBS_NETWORK = ws2_32.lib user32.lib gdi32.lib
QMAKE_LIBS_OPENGL = glu32.lib opengl32.lib gdi32.lib user32.lib QMAKE_LIBS_OPENGL = glu32.lib opengl32.lib gdi32.lib user32.lib
QMAKE_LIBS_OPENGL_ES2 = $${LIBEGL_NAME}.lib $${LIBGLESV2_NAME}.lib gdi32.lib user32.lib QMAKE_LIBS_OPENGL_ES2 = $${LIBEGL_NAME}.lib $${LIBGLESV2_NAME}.lib gdi32.lib user32.lib
QMAKE_LIBS_OPENGL_ES2_DEBUG = $${LIBEGL_NAME}d.lib $${LIBGLESV2_NAME}d.lib gdi32.lib user32.lib QMAKE_LIBS_OPENGL_ES2_DEBUG = $${LIBEGL_NAME}d.lib $${LIBGLESV2_NAME}d.lib gdi32.lib user32.lib

View File

@ -0,0 +1,29 @@
Debug:
perl Configure debug-VC-WIN32 no-asm
ms\do_ms
nmake -f ms\nt.mak
nmake -f ms\nt.mak install
Release:
perl Configure VC-WIN32 no-asm
ms\do_ms
nmake -f ms\nt.mak
nmake -f ms\nt.mak install
x64:
Debug:
perl Configure debug-VC-WIN64A
ms\do_win64a
nmake -f ms\nt.mak
nmake -f ms\nt.mak install
Release:
perl Configure VC-WIN64A
ms\do_win64a
nmake -f ms\nt.mak
nmake -f ms\nt.mak install

Binary file not shown.