diff options
author | Timothy Pearson <[email protected]> | 2011-12-18 01:35:15 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-18 01:35:15 -0600 |
commit | dbc765a8f2741cfb6d90557c8e96414a61174926 (patch) | |
tree | d16be000ffc5c3733b2856486febcdd526077e9e /qca-tls.pro | |
download | tqca-tls-dbc765a8f2741cfb6d90557c8e96414a61174926.tar.gz tqca-tls-dbc765a8f2741cfb6d90557c8e96414a61174926.zip |
Initial import
Diffstat (limited to 'qca-tls.pro')
-rw-r--r-- | qca-tls.pro | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/qca-tls.pro b/qca-tls.pro new file mode 100644 index 0000000..c1541bf --- /dev/null +++ b/qca-tls.pro @@ -0,0 +1,26 @@ +# qca-tls qmake profile + +TEMPLATE = lib +CONFIG += qt thread release plugin +TARGET = qca-tls + +!exists(qcaprovider.h) { + Q_PREFIX = ../../src + INCLUDEPATH += $$Q_PREFIX +} +HEADERS += ($$Q_PREFIX)qcaprovider.h + +HEADERS = qca-tls.h +SOURCES = qca-tls.cpp + +DEFINES += QCA_PLUGIN +win32:{ + DEFINES += QCA_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 |