mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-22 10:42:29 +01:00
Update openSSL to 1.1.1d via vcpkg now
This commit is contained in:
parent
20d2667548
commit
d110fbc9d2
@ -77,28 +77,28 @@ win32 {
|
||||
RC_ICONS += favicon.ico
|
||||
|
||||
INCLUDEPATH += $$PWD/../Common/vcpkg/installed/x64-windows/include
|
||||
DEPENDPATH += $$PWD/../Common/vcpkg/installed/x64-windows/include
|
||||
|
||||
LIBS += -L$$PWD/../Common/vcpkg/installed/x64-windows/lib/ -llibzippp
|
||||
CONFIG(debug, debug|release) {
|
||||
install_it.files += $$PWD/../Common/vcpkg/installed/x64-windows/debug/bin/zip.dll \
|
||||
$$PWD/../Common/vcpkg/installed/x64-windows/debug/bin/zlibd1.dll \
|
||||
$$PWD/../Common/vcpkg/installed/x64-windows/debug/bin/libzippp.dll \
|
||||
$$PWD/../Common/vcpkg/installed/x64-windows/debug/bin/bz2d.dll \
|
||||
|
||||
} else {
|
||||
install_it.files += $$PWD/../Common/vcpkg/installed/x64-windows/bin/zip.dll \
|
||||
$$PWD/../Common/vcpkg/installed/x64-windows/bin/zlib1.dll \
|
||||
$$PWD/../Common/vcpkg/installed/x64-windows/bin/libzippp.dll \
|
||||
$$PWD/../Common/vcpkg/installed/x64-windows/bin/bz2.dll \
|
||||
}
|
||||
|
||||
|
||||
DEPENDPATH += $$PWD/../Common/vcpkg/installed/x64-windows/include
|
||||
|
||||
LIBS += -luser32
|
||||
install_it.files += \
|
||||
$$PWD/ThirdParty/OpenSSL/libcrypto-1_1-x64.dll \
|
||||
$$PWD/ThirdParty/OpenSSL/libssl-1_1-x64.dll \
|
||||
LIBS += -L$$PWD/../Common/vcpkg/installed/x64-windows/lib/ -llibzippp
|
||||
|
||||
CONFIG(debug, debug|release) {
|
||||
install_it.files += $$PWD/../Common/vcpkg/installed/x64-windows/debug/bin/zip.dll \
|
||||
$$PWD/../Common/vcpkg/installed/x64-windows/debug/bin/zlibd1.dll \
|
||||
$$PWD/../Common/vcpkg/installed/x64-windows/debug/bin/libzippp.dll \
|
||||
$$PWD/../Common/vcpkg/installed/x64-windows/debug/bin/bz2d.dll \
|
||||
$$PWD/../Common/vcpkg/installed/x64-windows/debug/bin/libcrypto-1_1-x64.dll \
|
||||
$$PWD/../Common/vcpkg/installed/x64-windows/debug/bin/libssl-1_1-x64.dll \
|
||||
|
||||
} else {
|
||||
install_it.files += $$PWD/../Common/vcpkg/installed/x64-windows/bin/zip.dll \
|
||||
$$PWD/../Common/vcpkg/installed/x64-windows/bin/zlib1.dll \
|
||||
$$PWD/../Common/vcpkg/installed/x64-windows/bin/libzippp.dll \
|
||||
$$PWD/../Common/vcpkg/installed/x64-windows/bin/bz2.dll \
|
||||
$$PWD/../Common/vcpkg/installed/x64-windows/bin/libcrypto-1_1-x64.dll \
|
||||
$$PWD/../Common/vcpkg/installed/x64-windows/bin/libssl-1_1-x64.dll \
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
@ -35,6 +35,17 @@ win32 {
|
||||
HEADERS += \
|
||||
src/windowsdesktopproperties.h \
|
||||
src/winwindow.h
|
||||
|
||||
CONFIG(debug, debug|release) {
|
||||
install_it.files += \
|
||||
$$PWD/../Common/vcpkg/installed/x64-windows/debug/bin/libcrypto-1_1-x64.dll \
|
||||
$$PWD/../Common/vcpkg/installed/x64-windows/debug/bin/libssl-1_1-x64.dll \
|
||||
|
||||
} else {
|
||||
install_it.files += \
|
||||
$$PWD/../Common/vcpkg/installed/x64-windows/bin/libcrypto-1_1-x64.dll \
|
||||
$$PWD/../Common/vcpkg/installed/x64-windows/bin/libssl-1_1-x64.dll \
|
||||
}
|
||||
}
|
||||
|
||||
include(../ScreenPlaySDK/ScreenPlaySDK.pri)
|
||||
|
@ -15,6 +15,24 @@ RESOURCES += \
|
||||
|
||||
include(../ScreenPlaySDK/ScreenPlaySDK.pri)
|
||||
|
||||
|
||||
|
||||
win32 {
|
||||
|
||||
CONFIG(debug, debug|release) {
|
||||
install_it.files += \
|
||||
$$PWD/../Common/vcpkg/installed/x64-windows/debug/bin/libcrypto-1_1-x64.dll \
|
||||
$$PWD/../Common/vcpkg/installed/x64-windows/debug/bin/libssl-1_1-x64.dll \
|
||||
|
||||
} else {
|
||||
install_it.files += \
|
||||
$$PWD/../Common/vcpkg/installed/x64-windows/bin/libcrypto-1_1-x64.dll \
|
||||
$$PWD/../Common/vcpkg/installed/x64-windows/bin/libssl-1_1-x64.dll \
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
macx: {
|
||||
QMAKE_LIBDIR += $$OUT_PWD/
|
||||
}
|
||||
|
@ -6,5 +6,5 @@ cd vcpkg
|
||||
git pull
|
||||
git checkout origin/master
|
||||
call bootstrap-vcpkg.bat
|
||||
vcpkg.exe install libzippp:x64-windows nlohmann-json:x64-windows
|
||||
vcpkg.exe install libzippp:x64-windows nlohmann-json:x64-windows openssl:x64-windows
|
||||
pause
|
Loading…
Reference in New Issue
Block a user