mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Add ability to customize openssl directory
This commit is contained in:
parent
23cf8cc484
commit
a4c1f87aea
9
dependencies/openssl.pri
vendored
9
dependencies/openssl.pri
vendored
|
@ -1,7 +1,12 @@
|
|||
win32 {
|
||||
INCLUDEPATH += C:/local/openssl/include
|
||||
isEmpty(OPENSSL_DIRECTORY) {
|
||||
message(Using default openssl directory C:\\local\\openssl)
|
||||
OPENSSL_DIRECTORY = C:\local\openssl
|
||||
}
|
||||
|
||||
LIBS += -LC:\local\openssl\lib
|
||||
INCLUDEPATH += $$OPENSSL_DIRECTORY\\include
|
||||
|
||||
LIBS += -L$$OPENSSL_DIRECTORY\lib
|
||||
|
||||
LIBS += -llibssl
|
||||
LIBS += -llibcrypto
|
||||
|
|
Loading…
Reference in a new issue