Jamfile 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # Boost.GIL (Generic Image Library) - Toolbox tests
  2. #
  3. # Copyright (c) 2012 Christian Henning
  4. # Copyright (c) 2012 Mateusz Loskot <mateusz@loskot.net>
  5. #
  6. # Distributed under the Boost Software License, Version 1.0.
  7. # (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  8. import testing ;
  9. project
  10. : requirements
  11. <library>/boost/test//boost_unit_test_framework
  12. <link>shared:<define>BOOST_TEST_DYN_LINK=1
  13. ;
  14. alias headers : [ generate_self_contained_headers extension/toolbox ] ;
  15. run
  16. test.cpp
  17. channel_type.cpp
  18. channel_view.cpp
  19. cmyka.cpp
  20. get_num_bits.cpp
  21. get_pixel_type.cpp
  22. gray_alpha.cpp
  23. gray_to_rgba.cpp
  24. hsl_hsv_test.cpp
  25. indexed_image_test.cpp
  26. is_bit_aligned.cpp
  27. is_homogeneous.cpp
  28. is_similar.cpp
  29. lab_test.cpp
  30. pixel_bit_size.cpp
  31. rgb_to_luminance.cpp
  32. # TODO: Add subchroma_image.cpp after fixing run-time failure,
  33. # for details see https://github.com/boostorg/gil/pull/164
  34. #subchroma_image.cpp
  35. xyz_test.cpp
  36. ;