mirror of
https://github.com/boostorg/boost.git
synced 2025-04-06 22:14:59 +00:00
Load optional components only when their build directory is present.
Non-recursive super-project checkout still has empty directory for all components.
This commit is contained in:
parent
c686957ac5
commit
fb8338770e
1 changed files with 2 additions and 2 deletions
4
Jamroot
4
Jamroot
|
@ -261,12 +261,12 @@ for local l in $(all-libraries)
|
|||
use-project /boost/$(l) : libs/$(l)/build ;
|
||||
}
|
||||
|
||||
if [ path.exists $(BOOST_ROOT)/tools/inspect ]
|
||||
if [ path.exists $(BOOST_ROOT)/tools/inspect/build ]
|
||||
{
|
||||
use-project /boost/tools/inspect : tools/inspect/build ;
|
||||
}
|
||||
|
||||
if [ path.exists $(BOOST_ROOT)/libs/wave/tool ]
|
||||
if [ path.exists $(BOOST_ROOT)/libs/wave/tool/build ]
|
||||
{
|
||||
use-project /boost/libs/wave/tool : libs/wave/tool/build ;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue