mirror of
https://github.com/boostorg/boost.git
synced 2026-01-18 21:41:27 +01:00
--show-libraries only lists compiled libraries (#1103)
This commit is contained in:
committed by
Peter Dimov
parent
248b36ff99
commit
d18e17ad2a
@@ -602,7 +602,14 @@ rule declare-targets ( all-libraries * )
|
|||||||
ECHO The following libraries require building\: ;
|
ECHO The following libraries require building\: ;
|
||||||
for local l in $(libraries)
|
for local l in $(libraries)
|
||||||
{
|
{
|
||||||
ECHO " - $(l)" ;
|
if $(l) = function_types
|
||||||
|
{
|
||||||
|
continue ;
|
||||||
|
}
|
||||||
|
if [ path.glob $(BOOST_ROOT)/libs/$(l)/build : Jamfile Jamfile.v2 ]
|
||||||
|
{
|
||||||
|
echo " - $(l)" ;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
EXIT ;
|
EXIT ;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user