]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/callable_traits/test/Jamfile.v2
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / callable_traits / test / Jamfile.v2
1 # Copyright Louis Dionne 2013-2016
2 # Modified Work Copyright Barrett Adair 2016-2017
3 # Copyright 2017 Peter Dimov
4 #
5 # Distributed under the Boost Software License, Version 1.0.
6 # (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
7
8 import testing ;
9 import ../../config/checks/config : requires ;
10
11 project :
12 requirements
13 [ requires cxx11_constexpr ]
14 <toolset>clang:<cxxflags>"-pedantic -Wall -Wextra"
15 <toolset>darwin:<cxxflags>"-pedantic -Wall -Wextra"
16 ;
17
18 for local source in [ glob *.cpp ]
19 {
20 run $(source) ;
21 run $(source) : : : <define>USE_LAZY_TYPES : $(source:B)__lazy ;
22 }