Jamfile.v2 668 B

123456789101112131415161718192021222324252627
  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. rule test_all
  9. {
  10. local all_rules = ;
  11. for local fileb in [ glob *.cpp ]
  12. {
  13. all_rules += [ run $(fileb)
  14. : # additional args
  15. : # test-files
  16. : # requirements
  17. <toolset>msvc:<cxxflags>/bigobj
  18. <host-os>windows,<toolset>intel:<cxxflags>/bigobj
  19. ] ;
  20. }
  21. return $(all_rules) ;
  22. }
  23. test-suite boost-geometry-index-rtree-exceptions : [ test_all r ] ;