• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
8import testing ;
9import ../../config/checks/config : requires ;
10
11project :
12    requirements
13        [ requires cxx11_constexpr ]
14        <toolset>clang:<cxxflags>"-pedantic -Wall -Wextra"
15        <toolset>darwin:<cxxflags>"-pedantic -Wall -Wextra"
16;
17
18for local source in [ glob *.cpp ]
19{
20    run $(source) ;
21    run $(source) : : : <define>USE_LAZY_TYPES : $(source:B)__lazy ;
22}
23