From d9dd0a7874f8190113ac10bf420aee85fd9f94e8 Mon Sep 17 00:00:00 2001 From: Glenn Rice Date: Wed, 11 Sep 2013 23:35:52 -0500 Subject: [PATCH] Fix building with polarssl from the externals. --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 73db7846fc..fcdeeca8fb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -610,6 +610,7 @@ if(POLARSSL_FOUND AND POLARSSL_WORKS) include_directories(${POLARSSL_INCLUDE_DIR}) else() message("Using PolarSSL from Externals") + set(POLARSSL_LIBRARY polarssl) add_subdirectory(Externals/polarssl/) include_directories(Externals/polarssl/include) endif()