You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
482 B
27 lines
482 B
# tqca-tls qmake profile
|
|
|
|
TEMPLATE = lib
|
|
CONFIG += qt thread release plugin
|
|
TARGET = tqca-tls
|
|
|
|
!exists(qcaprovider.h) {
|
|
Q_PREFIX = ../../src
|
|
INCLUDEPATH += $$Q_PREFIX
|
|
}
|
|
HEADERS += ($$Q_PREFIX)qcaprovider.h
|
|
|
|
HEADERS = qca-tls.h
|
|
SOURCES = qca-tls.cpp
|
|
|
|
DEFINES += TQCA_PLUGIN
|
|
win32:{
|
|
DEFINES += TQCA_PLUGIN_DLL OSSL_097
|
|
INCLUDEPATH += c:\local\include
|
|
LIBS += c:\local\lib\libeay32.lib c:\local\lib\ssleay32.lib
|
|
}
|
|
|
|
include(conf.pri)
|
|
include(extra.pri)
|
|
|
|
QMAKE_PROJECT_DEPTH=0
|