From 65090cc1bb03c56c78670b807e093fdf7d733b12 Mon Sep 17 00:00:00 2001 From: Rafael Fillipe Silva Date: Sun, 25 Feb 2024 16:24:01 +0000 Subject: [PATCH] add scons rules do detect boost-graph Signed-off-by: Rafael Fillipe Silva --- scons/boost.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scons/boost.py b/scons/boost.py index 57a82146f27..d999c174b1f 100644 --- a/scons/boost.py +++ b/scons/boost.py @@ -69,7 +69,8 @@ def CheckBoost(context, boost_lib, require_version = None, header_only = False): "random" : "random/random_number_generator.hpp", "system" : "system/error_code.hpp", "context" : "context/continuation.hpp", - "coroutine" : "coroutine/coroutine.hpp" } + "coroutine" : "coroutine/coroutine.hpp", + "graph" : "graph/graph_traits.hpp" } header_name = boost_headers.get(boost_lib, boost_lib + ".hpp") libname = "boost_" + boost_lib + env.get("boost_suffix", "")