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
9import testing ;
10
11project polygon-test
12    :
13    requirements
14        <include>.
15        <toolset>msvc:<asynch-exceptions>on
16        <library>/boost/test//boost_unit_test_framework
17    ;
18
19test-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 polygon_set_data_test.cpp ]
26        [ run polygon_90_data_test.cpp ]
27        [ run gtl_boost_unit_test.cpp ]
28    ;
29
30test-suite voronoi-unit
31    :
32        [ run voronoi_builder_test.cpp ]
33        [ run voronoi_ctypes_test.cpp ]
34        [ run voronoi_diagram_test.cpp ]
35        [ run voronoi_geometry_type_test.cpp ]
36        [ run voronoi_predicates_test.cpp ]
37        [ run voronoi_robust_fpt_test.cpp ]
38        [ run voronoi_structures_test.cpp ]
39    ;
40
41
42