Jamfile 773 B

12345678910111213141516171819202122232425262728
  1. # Boost.GIL (Generic Image Library) - tests
  2. #
  3. # Copyright (c) 2018 Mateusz Loskot <mateusz@loskot.net>
  4. #
  5. # Distributed under the Boost Software License, Version 1.0.
  6. # (See accompanying file LICENSE_1_0.txt or
  7. # copy at http://www.boost.org/LICENSE_1_0.txt)
  8. import testing ;
  9. project
  10. : requirements
  11. <include>..
  12. <library>/boost/test//boost_unit_test_framework
  13. <link>shared:<define>BOOST_TEST_DYN_LINK=1
  14. ;
  15. compile concepts.cpp ;
  16. run test_fixture.cpp ;
  17. run is_channel_integral.cpp ;
  18. run channel_traits.cpp ;
  19. run packed_channel_value.cpp ;
  20. run scoped_channel_value.cpp ;
  21. run algorithm_channel_arithmetic.cpp ;
  22. run algorithm_channel_convert.cpp ;
  23. run algorithm_channel_invert.cpp ;
  24. run algorithm_channel_multiply.cpp ;
  25. run algorithm_channel_relation.cpp ;