mirror of
https://github.com/boostorg/stl_interfaces.git
synced 2026-01-19 04:42:12 +00:00
32 lines
817 B
Plaintext
32 lines
817 B
Plaintext
# Boost.STLInterfaces Library Tests Jamfile
|
|
|
|
# Copyright Oliver Kowalke 2013.
|
|
# Copyright Modified Work Barrett Adair 2020
|
|
# 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-search /boost/config/checks ;
|
|
import config : requires ;
|
|
|
|
project :
|
|
requirements
|
|
<library>/boost/core//boost_core
|
|
[ requires cxx14_constexpr ]
|
|
;
|
|
|
|
run forward.cpp ;
|
|
run detail.cpp ;
|
|
run array.cpp ;
|
|
run output.cpp ;
|
|
run input.cpp ;
|
|
run reverse_iter.cpp ;
|
|
run static_vec_noncopyable.cpp ;
|
|
run bidirectional.cpp ;
|
|
run random_access.cpp ;
|
|
run static_vec.cpp ;
|
|
|
|
compile compile_seq_cont_rvalue_constrained_pop_back.cpp ;
|
|
compile compile_sfinae_path_mutable_iterator.cpp ;
|