# Boost.OpenMethod Library Test Jamfile # # Copyright 2015-2019 Peter Dimov # # Distributed under 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 import-search /boost/config/checks ; import testing ; import config : requires ; project : requirements [ requires cxx11_variadic_templates cxx11_template_aliases cxx11_decltype cxx11_hdr_tuple ] /boost/open_method//boost_open_method extra # msvc:on # gcc:on # clang:on ; # list for local src in [ glob test_*.cpp ] { run $(src) ; } # quick (for CI) alias quick : test_blackbox ; explicit quick ;