blob: 45fcf10db616896434a010181e8857210be7a6db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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}
)
|