Files
variant2/test/Jamfile
2017-05-30 02:08:31 +03:00

22 lines
732 B
Plaintext

# Boost.Variant2 Library Test Jamfile
#
# Copyright 2015-2017 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 testing ;
import ../../config/checks/config : requires ;
REQ = ; #[ requires cxx11_variadic_templates cxx11_template_aliases cxx11_decltype cxx11_hdr_type_traits ] ;
run variant_size.cpp : : : $(REQ) ;
run variant_alternative.cpp : : : $(REQ) ;
run holds_alternative.cpp : : : $(REQ) ;
compile holds_alternative_cx.cpp : : : $(REQ) ;
run get_by_index.cpp : : : $(REQ) ;
compile get_by_index_cx.cpp : : : $(REQ) ;
run get_by_type.cpp : : : $(REQ) ;
compile get_by_type_cx.cpp : : : $(REQ) ;