git://developer.intra2net.com
/
libi2ncommon
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
49277d8
)
Add missing Boost include directory
author
Thomas Jarosch
<thomas.jarosch@intra2net.com>
Wed, 31 Dec 2025 10:36:53 +0000 (11:36 +0100)
committer
Thomas Jarosch
<thomas.jarosch@intra2net.com>
Wed, 31 Dec 2025 11:09:24 +0000 (12:09 +0100)
Otherwise it defaults to /usr/include. During upgrades,
we want it to pick it up from /opt/boost/include.
CMakeLists.txt
patch
|
blob
|
blame
|
history
diff --git
a/CMakeLists.txt
b/CMakeLists.txt
index
8c0eac7
..
308f85e
100644
(file)
--- 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)