source: qca-tls/trunk/qca-tls.pro@ 34

Last change on this file since 34 was 34, checked in by dmik, 19 years ago

QCA-TLS: Added OS/2-related defines to make it compile.

File size: 605 bytes
Line 
1# qca-tls qmake profile
2
3TEMPLATE = lib
4CONFIG += qt thread release plugin
5TARGET = qca-tls
6
7!exists(qcaprovider.h) {
8 Q_PREFIX = ../../src
9 INCLUDEPATH += $$Q_PREFIX
10}
11HEADERS += ($$Q_PREFIX)qcaprovider.h
12
13HEADERS = qca-tls.h
14SOURCES = qca-tls.cpp
15
16DEFINES += QCA_PLUGIN
17win32:{
18 DEFINES += QCA_PLUGIN_DLL OSSL_097
19 INCLUDEPATH += c:\local\include
20 LIBS += c:\local\lib\libeay32.lib c:\local\lib\ssleay32.lib
21}
22os2:{
23 DEFINES += QCA_PLUGIN_DLL OSSL_097
24 INCLUDEPATH += ..\openssl-0.9.8b\outinc
25 LIBS += ..\openssl-0.9.8b\out\crypto ..\openssl-0.9.8b\out\ssl
26}
27
28include(conf.pri)
29include(extra.pri)
30
Note: See TracBrowser for help on using the repository browser.