mirror of
https://github.com/boostorg/boost.git
synced 2025-04-08 06:43:09 +00:00
Merge: Implement --show-libraries
[SVN r36613]
This commit is contained in:
parent
6b2d61c466
commit
8b758fa4ce
1 changed files with 10 additions and 0 deletions
10
Jamfile.v2
10
Jamfile.v2
|
@ -250,6 +250,16 @@ PYTHON_ROOT ?= $(python-root) ;
|
|||
# Select the libraries to install.
|
||||
libraries = [ libraries-to-install $(all-libraries) ] ;
|
||||
|
||||
if --show-libraries in [ modules.peek : ARGV ]
|
||||
{
|
||||
ECHO "The following libraries require building:" ;
|
||||
for local l in $(libraries)
|
||||
{
|
||||
ECHO " - $(l)" ;
|
||||
}
|
||||
EXIT ;
|
||||
}
|
||||
|
||||
# Custom build ID.
|
||||
local build-id = [ MATCH "^--buildid=(.*)" : [ modules.peek : ARGV ] ] ;
|
||||
if $(build-id)
|
||||
|
|
Loading…
Add table
Reference in a new issue