]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/geometry/test/Jamfile.v2
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / boost / libs / geometry / test / Jamfile.v2
CommitLineData
7c673cae
FG
1# Boost.Geometry (aka GGL, Generic Geometry Library)
2#
3# Copyright (c) 2007-2012 Barend Gehrels, Amsterdam, the Netherlands.
4# Copyright (c) 2008-2012 Bruno Lalande, Paris, France.
5# Copyright (c) 2009-2012 Mateusz Loskot, London, UK.
6#
11fdf7f2
TL
7# This file was modified by Oracle on 2017, 2018.
8# Modifications copyright (c) 2017-2018 Oracle and/or its affiliates.
9# Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
10#
7c673cae
FG
11# Use, modification and distribution is subject to the Boost Software License,
12# Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
13# http://www.boost.org/LICENSE_1_0.txt)
14
11fdf7f2 15import os ;
7c673cae
FG
16import testing ;
17
18project boost-geometry-test
19 :
20 requirements
21 <include>.
22 <include>../../../boost/geometry/extensions/contrib/ttmath
23 <toolset>msvc:<asynch-exceptions>on
24 <toolset>msvc:<cxxflags>/bigobj
25 <toolset>clang:<cxxflags>-Wno-unneeded-internal-declaration # supress warning by Boost.None
b32b8144 26 <toolset>intel:<define>BOOST_GEOMETRY_TEST_ONLY_ONE_TYPE
7c673cae
FG
27 <host-os>windows,<toolset>intel:<cxxflags>/bigobj
28 <define>BOOST_NO_AUTO_PTR # disable the deprecated std::auto_ptr support in SmartPtr and Core
29 ;
30
11fdf7f2
TL
31# Run minimal testset
32test-suite boost-geometry-minimal
33 :
34 [ run minimal.cpp : : : : minimal ]
35 ;
36
37# If not on Travis run all of the tests
38if ! [ os.environ TRAVIS ]
39{
40
7c673cae
FG
41build-project core ;
42build-project concepts ;
43build-project geometries ;
44build-project arithmetic ;
45build-project algorithms ;
b32b8144 46build-project formulas ;
7c673cae
FG
47build-project iterators ;
48build-project strategies ;
49build-project policies ;
50build-project io ;
11fdf7f2 51build-project srs ;
7c673cae
FG
52build-project util ;
53build-project views ;
11fdf7f2
TL
54
55}