From 37940d923edaee22aae168159fea3105556683af Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Mon, 9 Mar 2020 18:03:48 +0100 Subject: [PATCH] Restore linking against all libraries in the cmake_subproject test --- programs/test/cmake_subproject/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/programs/test/cmake_subproject/CMakeLists.txt b/programs/test/cmake_subproject/CMakeLists.txt index 3afbdb21e..3e32c5fc3 100644 --- a/programs/test/cmake_subproject/CMakeLists.txt +++ b/programs/test/cmake_subproject/CMakeLists.txt @@ -8,9 +8,11 @@ set(MBEDTLS_DIR ../../../) # Add Mbed TLS as a subdirectory. add_subdirectory(${MBEDTLS_DIR} build) -# Link against the Mbed Crypto library. +# Link against all the Mbed TLS libraries. set(libs mbedcrypto + mbedx509 + mbedtls ) add_executable(cmake_subproject cmake_subproject.c)