Jamfile.v2 4.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. # Boost.Geometry (aka GGL, Generic Geometry Library)
  2. #
  3. # Copyright (c) 2007-2015 Barend Gehrels, Amsterdam, the Netherlands.
  4. # Copyright (c) 2008-2015 Bruno Lalande, Paris, France.
  5. # Copyright (c) 2009-2015 Mateusz Loskot, London, UK.
  6. # Copyright (c) 2018 Adam Wulkiewicz, Lodz, Poland.
  7. #
  8. # This file was modified by Oracle on 2014, 2015, 2016, 2017.
  9. # Modifications copyright (c) 2014-2017, Oracle and/or its affiliates.
  10. #
  11. # Contributed and/or modified by Vissarion Fisikopoulos, on behalf of Oracle
  12. # Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle
  13. # Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
  14. #
  15. # Use, modification and distribution is subject to the Boost Software License,
  16. # Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  17. # http://www.boost.org/LICENSE_1_0.txt)
  18. test-suite boost-geometry-algorithms
  19. :
  20. [ run append.cpp : : : : algorithms_append ]
  21. [ run assign.cpp : : : : algorithms_assign ]
  22. [ run centroid.cpp : : : : algorithms_centroid ]
  23. [ run centroid_multi.cpp : : : : algorithms_centroid_multi ]
  24. [ run comparable_distance.cpp : : : : algorithms_comparable_distance ]
  25. [ run convert.cpp : : : : algorithms_convert ]
  26. [ run convert_multi.cpp : : : : algorithms_convert_multi ]
  27. [ run convex_hull.cpp : : : : algorithms_convex_hull ]
  28. [ run convex_hull_multi.cpp : : : : algorithms_convex_hull_multi ]
  29. [ run correct.cpp : : : : algorithms_correct ]
  30. [ run correct_multi.cpp : : : : algorithms_correct_multi ]
  31. [ run correct_closure.cpp : : : : algorithms_correct_closure ]
  32. [ run densify.cpp : : : : algorithms_densify ]
  33. [ run for_each.cpp : : : : algorithms_for_each ]
  34. [ run for_each_multi.cpp : : : : algorithms_for_each_multi ]
  35. [ run is_convex.cpp : : : : algorithms_is_convex ]
  36. [ run is_empty.cpp : : : : algorithms_is_empty ]
  37. [ run is_simple.cpp : : : : algorithms_is_simple ]
  38. [ run is_simple_geo.cpp : : : : algorithms_is_simple_geo ]
  39. [ run is_valid.cpp : : : : algorithms_is_valid ]
  40. [ run is_valid_failure.cpp : : : : algorithms_is_valid_failure ]
  41. [ run is_valid_geo.cpp : : : : algorithms_is_valid_geo ]
  42. [ run line_interpolate.cpp : : : : algorithms_line_interpolate ]
  43. [ run make.cpp : : : : algorithms_make ]
  44. [ run maximum_gap.cpp : : : : algorithms_maximum_gap ]
  45. [ run num_geometries.cpp : : : : algorithms_num_geometries ]
  46. [ run num_geometries_multi.cpp : : : : algorithms_num_geometries_multi ]
  47. [ run num_interior_rings.cpp : : : : algorithms_num_interior_rings ]
  48. [ run num_interior_rings_multi.cpp : : : : algorithms_num_interior_rings_multi ]
  49. [ run num_points.cpp : : : : algorithms_num_points ]
  50. [ run num_points_multi.cpp : : : : algorithms_num_points_multi ]
  51. [ run num_segments.cpp : : : : algorithms_segments ]
  52. [ run perimeter.cpp : : : : algorithms_perimeter ]
  53. [ run perimeter_multi.cpp : : : : algorithms_perimeter_multi ]
  54. [ run point_on_surface.cpp : : : : algorithms_point_on_surface ]
  55. [ run remove_spikes.cpp : : : : algorithms_remove_spikes ]
  56. [ run reverse.cpp : : : : algorithms_reverse ]
  57. [ run reverse_multi.cpp : : : : algorithms_reverse_multi ]
  58. [ run simplify.cpp : : : : algorithms_simplify ]
  59. [ run simplify_multi.cpp : : : : algorithms_simplify_multi ]
  60. [ run transform.cpp : : : : algorithms_transform ]
  61. [ run transform_multi.cpp : : : : algorithms_transform_multi ]
  62. [ run unique.cpp : : : : algorithms_unique ]
  63. [ run unique_multi.cpp : : : : algorithms_unique_multi ]
  64. ;
  65. build-project area ;
  66. build-project buffer ;
  67. build-project covered_by ;
  68. build-project crosses ;
  69. build-project detail ;
  70. build-project disjoint ;
  71. build-project distance ;
  72. build-project envelope_expand ;
  73. build-project equals ;
  74. build-project intersects ;
  75. build-project length ;
  76. build-project overlaps ;
  77. build-project overlay ;
  78. build-project perimeter ;
  79. build-project relate ;
  80. build-project set_operations ;
  81. build-project similarity ;
  82. build-project touches ;
  83. build-project within ;