From 5db43c5f878448aef6f2d3c350ecca98feb8e47e Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Wed, 7 May 2025 10:37:10 +0300 Subject: [PATCH] Move release to project default-build, like was done for tools/inspect --- build.jam | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/build.jam b/build.jam index 33d70ec..eaa6c8e 100644 --- a/build.jam +++ b/build.jam @@ -14,15 +14,14 @@ DIST_DIR ?= [ path.join $(BOOST_ROOT) dist ] ; DIST_DIR ?= dist ; DIST_DIR = [ path.root [ path.make $(DIST_DIR) ] [ path.pwd ] ] ; -project /boost/boostdep ; +project /boost/boostdep : default-build release ; + +install dist-bin : build//boostdep/static : EXE $(DIST_DIR)/bin ; +explicit dist-bin ; -install dist-bin - : build//boostdep/static - : EXE $(DIST_DIR)/bin - : release ; -explicit install ; alias boostdep : build//boostdep ; explicit boostdep ; + alias all : boostdep test dist-bin ; explicit all ;