summaryrefslogtreecommitdiffstats
path: root/src/tls/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/tls/CMakeLists.txt')
-rw-r--r--src/tls/CMakeLists.txt27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/tls/CMakeLists.txt b/src/tls/CMakeLists.txt
new file mode 100644
index 0000000..45fcf10
--- /dev/null
+++ b/src/tls/CMakeLists.txt
@@ -0,0 +1,27 @@
+include_directories(
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_SOURCE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+add_definitions( -DTQCA_PLUGIN )
+
+
+##### tqca-tls (shared)
+
+tde_add_library( tqca-tls SHARED NO_LIBTOOL_FILE AUTOMOC
+
+ SOURCES
+ tqca-tls.cpp
+ LINK
+ ${TQT_LIBRARIES}
+ ${SSL_LIBRARIES}
+
+ DESTINATION ${TQT_PLUGINS_CRYPTO_DIR}
+)