From 74b6a39683410512c441f67b7a0dbe22a629e8fd Mon Sep 17 00:00:00 2001 From: Artem Dinaburg Date: Fri, 7 Nov 2025 12:36:59 -0500 Subject: [PATCH] Add LLVM and CLANG includes to target LLVM and CLANG include dirs should be brought in via target_link_libraries but it would not compile on MacOS for me without these changes making it explicit. --- lib/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index b8bf2089..01038dcb 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -131,6 +131,8 @@ target_include_directories("${PROJECT_NAME}" PUBLIC $ $ + ${LLVM_INCLUDE_DIRS} + ${CLANG_INCLUDE_DIRS} ) if(RELLIC_ENABLE_INSTALL)