From 0f51eaee7781255862608aa27447f906541c8a7e Mon Sep 17 00:00:00 2001 From: Thomas Jarosch Date: Wed, 31 Dec 2025 11:36:53 +0100 Subject: [PATCH] Add missing Boost include directory Otherwise it defaults to /usr/include. During upgrades, we want it to pick it up from /opt/boost/include. --- CMakeLists.txt | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) 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) -- 1.7.1