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