From 543ae0882b26eda04d2203a310180c7cc7e147ce Mon Sep 17 00:00:00 2001 From: Thulinma Date: Wed, 18 Jan 2017 13:41:26 +0100 Subject: [PATCH] Added NOSSL flag --- CMakeLists.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7b557502..ec4087aa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -379,8 +379,10 @@ makeOutput(HTTPTS httpts http ts) makeOutput(HLS hls http ts) makeOutput(Push push)#LTS makeOutput(RTSP rtsp)#LTS -makeOutput(HTTPS https)#LTS -target_link_libraries(MistOutHTTPS mbedtls mbedcrypto mbedx509) +if (NOT DEFINED NOSSL ) + makeOutput(HTTPS https)#LTS + target_link_libraries(MistOutHTTPS mbedtls mbedcrypto mbedx509) +endif() makeOutput(DASH dash_mp4 http)#LTS if (DEFINED WITH_SANITY )