From bbe6b76e391b52fcafe93220c628e45a0284da41 Mon Sep 17 00:00:00 2001 From: Dimitri Staessens Date: Fri, 26 Jul 2024 14:52:10 +0200 Subject: build: Include /usr/local/include/ on OS X On OS X user-installed libraries (e.g. libtomlc99 used for the configfile) will have their headers in /usr/local/include/. Signed-off-by: Dimitri Staessens Signed-off-by: Sander Vrijders --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5a259431..cfb0c0fa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -35,6 +35,7 @@ endif () if (APPLE) set(CMAKE_MACOSX_RPATH 1) + include_directories("/usr/local/include/") endif() if (CMAKE_INSTALL_PREFIX STREQUAL "/usr") -- cgit v1.2.3