boost_callable_traits 0.1.0

Boost C++ library boost_callable_traits packaged using Zanbil
Documentation
# Copyright Louis Dionne 2013-2016
# Modified Work Copyright Barrett Adair 2016-2017
# Copyright 2017 Peter Dimov
#
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)

import testing ;
import-search /boost/config/checks ;
import config : requires ;

project :
    requirements
        [ requires cxx11_constexpr ]
        <toolset>clang:<cxxflags>"-pedantic -Wall -Wextra"
        <toolset>darwin:<cxxflags>"-pedantic -Wall -Wextra"
        <library>/boost/callable_traits//boost_callable_traits
;

for local source in [ glob *.cpp ]
{
    run $(source) ;
    run $(source) : : : <define>USE_LAZY_TYPES : $(source:B)__lazy ;
}