From c716c7c2a52024b7e1f396c0eeae9d0308ac4ed6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Ferdinand=20Rivera=20Morell?= Date: Wed, 7 May 2025 17:48:08 -0500 Subject: [PATCH] Move build-default to project declaration from targets. --- Jamfile.v2 | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/Jamfile.v2 b/Jamfile.v2 index 86de9fe..f7afe5d 100644 --- a/Jamfile.v2 +++ b/Jamfile.v2 @@ -1,5 +1,5 @@ # (C) Copyright John Maddock 2006. -# Copyright René Ferdinand Rivera Morell 2024 +# Copyright René Ferdinand Rivera Morell 2024-2025 # Distributed under the Boost Software License, Version 1.0. # (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) @@ -14,7 +14,8 @@ DIST_DIR ?= [ path.join $(BOOST_ROOT) dist ] ; DIST_DIR ?= dist ; DIST_DIR = [ path.root [ path.make $(DIST_DIR) ] [ path.pwd ] ] ; -project /boost/bcp ; +project /boost/bcp + : default-build release ; explicit [ exe bcp @@ -23,13 +24,10 @@ explicit fileview.cpp main.cpp path_operations.cpp scan_cvs_path.cpp licence_info.cpp scan_licence.cpp output_licence_info.cpp /boost/filesystem//boost_filesystem - /boost/regex//boost_regex - : - : release ] + /boost/regex//boost_regex ] [ install dist-bin : bcp/static - : EXE $(DIST_DIR)/bin - : release ] + : EXE $(DIST_DIR)/bin ] [ alias all : bcp test dist-bin ] ;