]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/geometry/index/test/rtree/exceptions/Jamfile
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / libs / geometry / index / test / rtree / exceptions / Jamfile
CommitLineData
7c673cae
FG
1# Boost.Geometry Index
2#
3# Copyright (c) 2011-2013 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-exceptions : [ test_all r ] ;