From c4d50766968930abe2252c861beacd5b988bc57f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Sat, 25 Mar 2017 20:11:33 +0100 Subject: [PATCH] Common: Add missing set(LIBS ...) for mbedtls --- Source/Core/Common/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/Common/CMakeLists.txt b/Source/Core/Common/CMakeLists.txt index 1718d33ef7..898b3dd204 100644 --- a/Source/Core/Common/CMakeLists.txt +++ b/Source/Core/Common/CMakeLists.txt @@ -40,6 +40,8 @@ set(SRCS Logging/LogManager.cpp ) +set(LIBS ${LIBS} ${MBEDTLS_LIBRARIES}) + if(ANDROID) set(SRCS ${SRCS} Logging/ConsoleListenerDroid.cpp)