Jamfile.v2 590 B

12345678910111213141516171819202122232425
  1. # Boost.Minmax Library test Jamfile
  2. #
  3. # Copyright (C) 2002--2004, Herve Bronnimann
  4. #
  5. # Use, modification, and distribution is subject to the Boost Software
  6. # License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  7. # http://www.boost.org/LICENSE_1_0.txt)
  8. #
  9. import testing ;
  10. alias unit_test_framework
  11. : # sources
  12. /boost//unit_test_framework
  13. ;
  14. {
  15. test-suite algorithm/minmax
  16. : [ run minmax_element_test.cpp unit_test_framework
  17. : : : : minmax_element ]
  18. [ run minmax_test.cpp unit_test_framework
  19. : : : : minmax ]
  20. ;
  21. }