Jamfile.v2 972 B

12345678910111213141516171819202122232425262728293031
  1. # Boost.Geometry Index
  2. #
  3. # Copyright (c) 2011-2013 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. import testing ;
  9. project boost-geometry-index-test
  10. :
  11. requirements
  12. <include>. # libs/geometry/index/test
  13. <include>../../test # libs/geometry/test
  14. #<include>../../../../boost/geometry/extensions/contrib/ttmath
  15. <toolset>msvc:<asynch-exceptions>on
  16. <toolset>msvc:<cxxflags>/bigobj
  17. <host-os>windows,<toolset>intel:<cxxflags>/bigobj
  18. <define>BOOST_NO_AUTO_PTR # disable the deprecated std::auto_ptr support in SmartPtr and Core
  19. <library>/boost/timer//boost_timer
  20. ;
  21. test-suite boost-geometry-index-varray
  22. :
  23. [ run varray_old.cpp ]
  24. [ run varray.cpp ]
  25. ;
  26. build-project algorithms ;
  27. build-project rtree ;