summaryrefslogtreecommitdiffstats
path: root/qca-tls.pro
diff options
context:
space:
mode:
Diffstat (limited to 'qca-tls.pro')
-rw-r--r--qca-tls.pro26
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