Jamfile.v2 686 B

1234567891011121314151617181920212223
  1. # Boost.Geometry Index
  2. #
  3. # Copyright (c) 2011-2016 Adam Wulkiewicz, Lodz, Poland.
  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. build-project exceptions ;
  9. build-project interprocess ;
  10. build-project generated ;
  11. test-suite boost-geometry-index-rtree
  12. :
  13. [ run rtree_contains_point.cpp ]
  14. [ run rtree_epsilon.cpp ]
  15. [ run rtree_insert_remove.cpp ]
  16. [ run rtree_intersects_geom.cpp ]
  17. [ run rtree_move_pack.cpp ]
  18. [ run rtree_non_cartesian.cpp ]
  19. [ run rtree_values.cpp ]
  20. [ compile-fail rtree_values_invalid.cpp ]
  21. ;