1# Boost.Geometry Index 2# 3# Copyright (c) 2011-2018 Adam Wulkiewicz, Lodz, Poland. 4# 5# Use, modification and distribution is subject to the Boost Software License, 6# Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at 7# http://www.boost.org/LICENSE_1_0.txt) 8 9rule test_all 10{ 11 local all_rules = ; 12 13 for local fileb in [ glob *.cpp ] 14 { 15 all_rules += [ run $(fileb) 16 : # additional args 17 : # test-files 18 : # requirements 19 <toolset>msvc:<cxxflags>/bigobj 20 <host-os>windows,<toolset>intel:<cxxflags>/bigobj 21 ] ; 22 } 23 24 return $(all_rules) ; 25} 26 27test-suite boost-geometry-index-rtree-generated-p3d : [ test_all r ] ; 28 29