Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions Jamfile.v2
Original file line number Diff line number Diff line change
@@ -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)

Expand All @@ -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
Expand All @@ -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/<link>static
: <install-type>EXE <location>$(DIST_DIR)/bin
: release ]
: <install-type>EXE <location>$(DIST_DIR)/bin ]
[ alias all : bcp test dist-bin ]
;

Expand Down
Loading