• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#=============================================================================
2#    Copyright (c) 2017 Paul Fultz II
3#    Jamfile.v2
4#    Distributed under the Boost Software License, Version 1.0. (See accompanying
5#    file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6#==============================================================================
7import testing ;
8import ../../config/checks/config : requires ;
9
10project hof
11    : requirements [ requires cxx11_variadic_templates cxx11_constexpr ]
12      <include>../include/
13    ;
14
15rule test_all
16{
17   local all_rules = ;
18
19   for local fileb in [ glob *.cpp ]
20   {
21      all_rules += [ run $(fileb)
22      :  # additional args
23      :  # test-files
24      :  # requirements
25      ] ;
26   }
27
28   return $(all_rules) ;
29}
30
31test-suite hof : [ test_all r ] : ;
32