mirror of
https://github.com/boostorg/boost.git
synced 2025-04-05 21:45:00 +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
7e1ae5664a
commit
f02b206a8b
1 changed files with 2 additions and 2 deletions
4
Jamroot
4
Jamroot
|
@ -248,12 +248,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