From 60f5c1b958372747877bd5dffb9c245c1aba4be4 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Fri, 4 Jul 2025 17:58:12 +0100 Subject: [PATCH] Adjust build.jam to make regex header only. While still installing the binary for those few that need it. --- build.jam | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/build.jam b/build.jam index b4223a58..9a3ae769 100644 --- a/build.jam +++ b/build.jam @@ -20,11 +20,12 @@ project /boost/regex ; explicit - [ alias boost_regex : build//boost_regex ] - [ alias all : boost_regex example test ] + [ alias boost_regex : : : : $(boost_dependencies) ] + [ alias boost_regex_old : build//boost_regex ] + [ alias all : boost_regex boost_regex_old example test ] ; call-if : boost-library regex - : install boost_regex + : install boost_regex_old ;