Skip to content

Commit 669c80e

Browse files
committed
--show-libraries only list compiled libraries
1 parent 52add7d commit 669c80e

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

boostcpp.jam

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,14 @@ rule declare-targets ( all-libraries * )
602602
ECHO The following libraries require building\: ;
603603
for local l in $(libraries)
604604
{
605-
ECHO " - $(l)" ;
605+
if $(l) = function_types
606+
{
607+
continue ;
608+
}
609+
if [ path.glob $(BOOST_ROOT)/libs/$(l)/build : Jamfile Jamfile.v2 ]
610+
{
611+
echo " - $(l)" ;
612+
}
606613
}
607614
EXIT ;
608615
}

0 commit comments

Comments
 (0)