Imported Upstream version 1.57.0
[platform/upstream/boost.git] / libs / polygon / test / Jamfile.v2
1 # test/Jamfile.v2 controls building of Polygon Library unit tests
2 #
3 # Copyright (c) 2010 Intel Corporation
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
9 import testing ;
10
11 project polygon-test
12     :
13     requirements
14         <include>.
15         <toolset>msvc:<asynch-exceptions>on
16         <library>/boost/test//boost_unit_test_framework
17     ;
18
19 test-suite polygon-unit
20     :
21         [ run polygon_point_test.cpp ]
22         [ run polygon_segment_test.cpp ]
23         [ run polygon_interval_test.cpp ]
24         [ run polygon_rectangle_test.cpp ]
25         [ run gtl_boost_unit_test.cpp ]
26     ;
27
28 test-suite voronoi-unit
29     :
30         [ run voronoi_builder_test.cpp ]
31         [ run voronoi_ctypes_test.cpp ]
32         [ run voronoi_diagram_test.cpp ]
33         [ run voronoi_geometry_type_test.cpp ]
34         [ run voronoi_predicates_test.cpp ]
35         [ run voronoi_robust_fpt_test.cpp ]
36         [ run voronoi_structures_test.cpp ]
37     ;
38
39