From: Thomas Jarosch Date: Wed, 31 Dec 2025 10:36:53 +0000 (+0100) Subject: Add missing Boost include directory X-Git-Tag: v2.13~2^2~1 X-Git-Url: http://developer.intra2net.com/git/?a=commitdiff_plain;h=0f51eaee7781255862608aa27447f906541c8a7e;p=libi2ncommon Add missing Boost include directory Otherwise it defaults to /usr/include. During upgrades, we want it to pick it up from /opt/boost/include. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 8c0eac7..308f85e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -135,6 +135,7 @@ include(FindPkgConfig) # Find Boost find_package(Boost 1.44 COMPONENTS iostreams unit_test_framework thread REQUIRED) +include_directories(${Boost_INCLUDE_DIRS}) # Find pcrecpp pkg_check_modules(PCRECPP REQUIRED libpcrecpp)