aboutsummaryrefslogtreecommitdiff
path: root/src/supplemental/tls/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/supplemental/tls/CMakeLists.txt')
-rw-r--r--src/supplemental/tls/CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/supplemental/tls/CMakeLists.txt b/src/supplemental/tls/CMakeLists.txt
index 41587915..a9c3af65 100644
--- a/src/supplemental/tls/CMakeLists.txt
+++ b/src/supplemental/tls/CMakeLists.txt
@@ -14,7 +14,7 @@
if (NNG_ENABLE_TLS)
# List of TLS engines we support. TLS engines must support TLS 1.2 or better,
# and must also support DTLS. Support for PSK is preferred.
- set(NNG_TLS_ENGINES mbed wolf none)
+ set(NNG_TLS_ENGINES mbed wolf openssl none)
# We assume Mbed for now.
set(NNG_TLS_ENGINE mbed CACHE STRING "TLS engine to use.")
set_property(CACHE NNG_TLS_ENGINE PROPERTY STRINGS ${NNG_TLS_ENGINES})
@@ -28,6 +28,7 @@ endif ()
add_subdirectory(mbedtls)
add_subdirectory(wolfssl)
+add_subdirectory(openssl)
if (NNG_ENABLE_TLS)
nng_sources(tls_common.c tls_dialer.c tls_listener.c tls_stream.c)