Jamfile 829 B

1234567891011121314151617181920212223242526
  1. # Boost.GIL (Generic Image Library) - legacy tests
  2. #
  3. # Copyright (c) 2007-2015 Andrey Semashev
  4. # Copyright (c) 2008 Lubomir Bourdev, Hailin Jin
  5. #
  6. # Distributed under the Boost Software License, Version 1.0.
  7. # (See accompanying file LICENSE_1_0.txt or
  8. # copy at http://www.boost.org/LICENSE_1_0.txt)
  9. #
  10. # *** IMPORTANT MAINTENANCE RULES ***
  11. # These are GIL's original, comprehensive, all-in-one test suites.
  12. # * Keep as reference.
  13. # * Do NOT extend.
  14. # * Do NOT refactor.
  15. # * Modify only if absolutely necessary (a bug found in the tests).
  16. # See the accompanying README.md
  17. import testing ;
  18. run image.cpp sample_image.cpp error_if.cpp : : gil_reference_checksums.txt ;
  19. run channel.cpp error_if.cpp ;
  20. run pixel.cpp error_if.cpp ;
  21. run pixel_iterator.cpp error_if.cpp ;
  22. alias perf : [ run performance.cpp ] ;
  23. explicit perf ;