Jamfile 803 B

1234567891011121314151617181920212223242526272829
  1. # Boost.GIL (Generic Image Library) - Numeric tests
  2. #
  3. # Copyright (c) 2013 Christian Henning
  4. # Copyright (c) 2019 Mateusz Loskot <mateusz at loskot dot net>
  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. import testing ;
  10. project
  11. : requirements
  12. <library>/boost/test//boost_unit_test_framework
  13. <link>shared:<define>BOOST_TEST_DYN_LINK=1
  14. ;
  15. alias headers : [ generate_self_contained_headers extension/numeric ] ;
  16. run channel_numeric_operations.cpp ;
  17. run convolve.cpp ;
  18. run convolve_cols.cpp ;
  19. run convolve_rows.cpp ;
  20. run kernel.cpp ;
  21. compile-fail kernel_1d_fixed_even_size_fail.cpp ;
  22. run matrix3x2.cpp ;
  23. run numeric.cpp ;
  24. run pixel_numeric_operations.cpp ;
  25. run convolve_2d.cpp ;