2014-06-12 13:30:04 +01:00
|
|
|
# Copyright John Maddock.
|
|
|
|
|
# Use, modification and distribution are subject to the
|
|
|
|
|
# Boost Software License, Version 1.0. (See accompanying file
|
|
|
|
|
# LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
|
|
2015-05-06 23:38:51 -05:00
|
|
|
import modules ;
|
|
|
|
|
|
2014-06-12 13:30:04 +01:00
|
|
|
rule requires ( names + )
|
|
|
|
|
{
|
2015-05-06 23:38:51 -05:00
|
|
|
local config-binding = [ modules.binding $(__name__) ] ;
|
|
|
|
|
|
2014-06-12 13:30:04 +01:00
|
|
|
local result ;
|
|
|
|
|
for name in $(names)
|
|
|
|
|
{
|
2020-05-09 16:36:21 +03:00
|
|
|
result += [ check-target-builds $(config-binding:D)//$(name) $(name) : : <build>no ] ;
|
2014-06-12 13:30:04 +01:00
|
|
|
}
|
|
|
|
|
return $(result) ;
|
|
|
|
|
}
|
|
|
|
|
|