mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
18 lines
358 B
Plaintext
18 lines
358 B
Plaintext
win32 {
|
|
isEmpty(OPENSSL_DIRECTORY) {
|
|
message(Using default openssl directory C:\\local\\openssl)
|
|
OPENSSL_DIRECTORY = C:\local\openssl
|
|
}
|
|
|
|
INCLUDEPATH += $$OPENSSL_DIRECTORY\\include
|
|
|
|
LIBS += -L$$OPENSSL_DIRECTORY\lib
|
|
|
|
LIBS += -llibssl
|
|
LIBS += -llibcrypto
|
|
} else {
|
|
PKGCONFIG += openssl
|
|
|
|
LIBS += -lssl -lcrypto
|
|
}
|