From 451e24c1d8c865999e0cb85306da69103686e959 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Wed, 2 Jan 2019 17:24:41 +0100 Subject: [PATCH] Fix out-of-tree builds that use the PSA crypto API headers --- include/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/include/CMakeLists.txt b/include/CMakeLists.txt index 67c66c8c65..4621271762 100644 --- a/include/CMakeLists.txt +++ b/include/CMakeLists.txt @@ -18,4 +18,5 @@ endif(INSTALL_MBEDTLS_HEADERS) # Make config.h available in an out-of-source build. ssl-opt.sh requires it. if (NOT ${CMAKE_CURRENT_BINARY_DIR} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}) link_to_source(mbedtls) + link_to_source(psa) endif()