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#
7# Use, modification and distribution is subject to the Boost Software License,
8# Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
9# http://www.boost.org/LICENSE_1_0.txt)
10
11import testing ;
12
13project boost-geometry-test
14    :
15    requirements
16        <include>.
17        <include>../../../boost/geometry/extensions/contrib/ttmath
18        <toolset>msvc:<asynch-exceptions>on
19        <toolset>msvc:<cxxflags>/bigobj
20        <toolset>clang:<cxxflags>-Wno-unneeded-internal-declaration # supress warning by Boost.None
21        <host-os>windows,<toolset>intel:<cxxflags>/bigobj
22        <define>BOOST_NO_AUTO_PTR # disable the deprecated std::auto_ptr support in SmartPtr and Core
23    ;
24
25build-project core ;
26build-project concepts ;
27build-project geometries ;
28build-project arithmetic ;
29build-project algorithms ;
30build-project iterators ;
31build-project strategies ;
32build-project policies ;
33build-project io ;
34build-project util ;
35build-project views ;
36