From 344ad48f03a1a0b3de83548c2b2342275e826ae2 Mon Sep 17 00:00:00 2001 From: David Garske Date: Tue, 26 Jul 2022 08:51:31 -0700 Subject: [PATCH] Fix for CMake not installing sp_int.h for SP math all. --- CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f2da855cce..467f4b7972 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2044,7 +2044,11 @@ endif() if(NOT BUILD_SP) list(APPEND HEADER_EXCLUDE - "wolfssl/wolfcrypt/sp.h" + "wolfssl/wolfcrypt/sp.h") +endif() + +if(NOT BUILD_SP_INT) + list(APPEND HEADER_EXCLUDE "wolfssl/wolfcrypt/sp_int.h") endif()