Jamfile.v2 805 B

1234567891011121314151617181920212223242526
  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. import testing ;
  9. run polygon_point_test.cpp ;
  10. run polygon_segment_test.cpp ;
  11. run polygon_interval_test.cpp ;
  12. run polygon_rectangle_test.cpp ;
  13. run polygon_rectangle_formation_test.cpp ;
  14. run polygon_set_data_test.cpp ;
  15. run polygon_90_data_test.cpp ;
  16. run gtl_boost_unit_test.cpp ;
  17. run voronoi_builder_test.cpp ;
  18. run voronoi_ctypes_test.cpp ;
  19. run voronoi_diagram_test.cpp ;
  20. run voronoi_geometry_type_test.cpp ;
  21. run voronoi_predicates_test.cpp ;
  22. run voronoi_robust_fpt_test.cpp ;
  23. run voronoi_structures_test.cpp ;