mirror of
https://github.com/boostorg/variant2.git
synced 2026-04-12 20:55:52 +02:00
22 lines
732 B
Plaintext
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) ;
|