• 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 ;
9
10project :
11    requirements
12        <toolset>clang:<cxxflags>"-pedantic -Wall -Wextra"
13        <toolset>darwin:<cxxflags>"-pedantic -Wall -Wextra"
14;
15
16for local source in [ glob *.cpp ]
17{
18    run $(source) ;
19}
20