2017-12-06 05:00:50 +08:00
|
|
|
constant BOOST_VERSION : 1.66.0 ;
|
|
|
|
constant BOOST_VERSION_ABI_TAG : 1_66 ;
|
|
|
|
constant BOOST_JAMROOT_MODULE : $(__name__) ;
|
|
|
|
|
|
|
|
import boostcpp ;
|
|
|
|
import feature ;
|
|
|
|
|
|
|
|
boostcpp.set-version $(BOOST_VERSION) ;
|
|
|
|
|
|
|
|
project boost : requirements
|
|
|
|
<include>include&&@CURRENT_INSTALLED_DIR@/include
|
|
|
|
<define>BOOST_ALL_NO_LIB=1
|
|
|
|
<tag>@$(__name__).tag
|
|
|
|
@REQUIREMENTS@
|
|
|
|
;
|
|
|
|
|
|
|
|
rule boost-install ( libraries * )
|
|
|
|
{
|
|
|
|
stagedir = [ option.get stagedir ] ;
|
|
|
|
install stage
|
|
|
|
: $(libraries)
|
|
|
|
: <location>$(stagedir)/lib ;
|
|
|
|
}
|
|
|
|
|
|
|
|
rule tag ( name : type ? : property-set )
|
|
|
|
{
|
|
|
|
return [ boostcpp.tag $(name) : $(type) : $(property-set) ] ;
|
|
|
|
}
|
|
|
|
|
|
|
|
rule python-tag ( name : type ? : property-set )
|
|
|
|
{
|
|
|
|
return [ tag $(name) : $(type) : $(property-set) ] ;
|
|
|
|
}
|
|
|
|
|
|
|
|
if "@PORT@" != "boost-system"
|
|
|
|
{
|
|
|
|
use-project /boost/system : . ;
|
|
|
|
|
2018-01-18 14:08:48 +08:00
|
|
|
lib boost_system : : <file>@CURRENT_INSTALLED_DIR@/lib/boost_system-vc140-mt.lib <variant>release ;
|
|
|
|
lib boost_system : : <file>@CURRENT_INSTALLED_DIR@/debug/lib/boost_system-vc140-mt-gd.lib <variant>debug ;
|
2017-12-06 05:00:50 +08:00
|
|
|
explicit boost_system ;
|
|
|
|
}
|
|
|
|
|
|
|
|
if "@PORT@" != "boost-chrono"
|
|
|
|
{
|
|
|
|
use-project /boost/chrono : . ;
|
|
|
|
|
2018-01-18 14:08:48 +08:00
|
|
|
lib boost_chrono : : <file>@CURRENT_INSTALLED_DIR@/lib/boost_chrono-vc140-mt.lib <variant>release ;
|
|
|
|
lib boost_chrono : : <file>@CURRENT_INSTALLED_DIR@/debug/lib/boost_chrono-vc140-mt-gd.lib <variant>debug ;
|
2017-12-06 05:00:50 +08:00
|
|
|
explicit boost_chrono ;
|
|
|
|
}
|
|
|
|
|
|
|
|
if "@PORT@" != "boost-regex"
|
|
|
|
{
|
|
|
|
use-project /boost/regex : . ;
|
|
|
|
|
2018-01-18 14:08:48 +08:00
|
|
|
lib boost_regex : : <file>@CURRENT_INSTALLED_DIR@/lib/boost_regex-vc140-mt.lib <variant>release ;
|
|
|
|
lib boost_regex : : <file>@CURRENT_INSTALLED_DIR@/debug/lib/boost_regex-vc140-mt-gd.lib <variant>debug ;
|
2017-12-06 05:00:50 +08:00
|
|
|
explicit boost_regex ;
|
|
|
|
}
|
|
|
|
|
|
|
|
if "@PORT@" != "boost-date-time"
|
|
|
|
{
|
|
|
|
use-project /boost/date_time : . ;
|
|
|
|
|
2018-01-18 14:08:48 +08:00
|
|
|
lib boost_date_time : : <file>@CURRENT_INSTALLED_DIR@/lib/boost_date_time-vc140-mt.lib <variant>release -<library>/boost/date_time//boost_date_time ;
|
|
|
|
lib boost_date_time : : <file>@CURRENT_INSTALLED_DIR@/debug/lib/boost_date_time-vc140-mt-gd.lib <variant>debug -<library>/boost/date_time//boost_date_time ;
|
2017-12-06 05:00:50 +08:00
|
|
|
explicit boost_date_time ;
|
|
|
|
}
|
|
|
|
|
|
|
|
if "@PORT@" != "boost-thread"
|
|
|
|
{
|
|
|
|
use-project /boost/thread : . ;
|
|
|
|
|
2018-01-18 14:08:48 +08:00
|
|
|
lib boost_thread : : <file>@CURRENT_INSTALLED_DIR@/lib/boost_thread-vc140-mt.lib <variant>release : : <library>/boost/date_time//boost_date_time ;
|
|
|
|
lib boost_thread : : <file>@CURRENT_INSTALLED_DIR@/debug/lib/boost_thread-vc140-mt-gd.lib <variant>debug : : <library>/boost/date_time//boost_date_time ;
|
2017-12-06 05:00:50 +08:00
|
|
|
explicit boost_thread ;
|
|
|
|
}
|
|
|
|
|
|
|
|
if "@PORT@" != "boost-timer"
|
|
|
|
{
|
|
|
|
use-project /boost/timer : . ;
|
|
|
|
|
2018-01-18 14:08:48 +08:00
|
|
|
lib boost_timer : : <file>@CURRENT_INSTALLED_DIR@/lib/boost_timer-vc140-mt.lib <variant>release ;
|
|
|
|
lib boost_timer : : <file>@CURRENT_INSTALLED_DIR@/debug/lib/boost_timer-vc140-mt-gd.lib <variant>debug ;
|
2017-12-06 05:00:50 +08:00
|
|
|
explicit boost_timer ;
|
|
|
|
}
|
|
|
|
|
|
|
|
if "@PORT@" != "boost-filesystem"
|
|
|
|
{
|
|
|
|
use-project /boost/filesystem : . ;
|
|
|
|
|
2018-01-18 14:08:48 +08:00
|
|
|
lib boost_filesystem : : <file>@CURRENT_INSTALLED_DIR@/lib/boost_filesystem-vc140-mt.lib <variant>release : : <library>/boost/system//boost_system ;
|
|
|
|
lib boost_filesystem : : <file>@CURRENT_INSTALLED_DIR@/debug/lib/boost_filesystem-vc140-mt-gd.lib <variant>debug : : <library>/boost/system//boost_system ;
|
2017-12-06 05:00:50 +08:00
|
|
|
explicit boost_filesystem ;
|
|
|
|
}
|
|
|
|
|
|
|
|
if "@PORT@" != "boost-atomic"
|
|
|
|
{
|
|
|
|
use-project /boost/atomic : . ;
|
|
|
|
|
2018-01-18 14:08:48 +08:00
|
|
|
lib boost_atomic : : <file>@CURRENT_INSTALLED_DIR@/lib/boost_atomic-vc140-mt.lib <variant>release ;
|
|
|
|
lib boost_atomic : : <file>@CURRENT_INSTALLED_DIR@/debug/lib/boost_atomic-vc140-mt-gd.lib <variant>debug ;
|
2017-12-06 05:00:50 +08:00
|
|
|
explicit boost_atomic ;
|
|
|
|
}
|
|
|
|
|
|
|
|
if "@PORT@" != "boost-context"
|
|
|
|
{
|
|
|
|
feature.feature segmented-stacks : on : optional propagated composite ;
|
|
|
|
feature.compose <segmented-stacks>on : <define>BOOST_USE_SEGMENTED_STACKS ;
|
|
|
|
|
|
|
|
use-project /boost/context : . ;
|
|
|
|
|
2018-01-18 14:08:48 +08:00
|
|
|
lib boost_context : : <file>@CURRENT_INSTALLED_DIR@/lib/boost_context-vc140-mt.lib <variant>release ;
|
|
|
|
lib boost_context : : <file>@CURRENT_INSTALLED_DIR@/debug/lib/boost_context-vc140-mt-gd.lib <variant>debug ;
|
2017-12-06 05:00:50 +08:00
|
|
|
explicit boost_context ;
|
|
|
|
}
|
|
|
|
|
|
|
|
if "@PORT@" != "boost-test"
|
|
|
|
{
|
|
|
|
use-project /boost/test : . ;
|
|
|
|
|
2018-01-18 14:08:48 +08:00
|
|
|
lib boost_unit_test_framework : : <file>@CURRENT_INSTALLED_DIR@/lib/boost_unit_test_framework-vc140-mt.lib <variant>release ;
|
|
|
|
lib boost_unit_test_framework : : <file>@CURRENT_INSTALLED_DIR@/debug/lib/boost_unit_test_framework-vc140-mt-gd.lib <variant>debug ;
|
2017-12-06 05:00:50 +08:00
|
|
|
explicit boost_unit_test_framework ;
|
|
|
|
}
|
|
|
|
|
|
|
|
rule requires ( foo * )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
rule boost-lib ( name : sources * : requirements * : default-build * : usage-requirements * )
|
|
|
|
{
|
|
|
|
name = boost_$(name) ;
|
|
|
|
lib $(name) : $(sources) : $(requirements) : $(default-build) : $(usage-requirements) ;
|
|
|
|
boost-install $(name) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
use-project /boost/@PORT@ : build ;
|
|
|
|
|
|
|
|
build-project build ;
|