Jamfile 830 B

1234567891011121314151617181920212223242526
  1. # Boost.GIL (Generic Image Library) - tests
  2. #
  3. # Copyright 2019 Miral Shah <miralshah2211@gmail.com>
  4. #
  5. # Use, modification and distribution are subject to the Boost Software License,
  6. # 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. project
  11. : requirements
  12. <include>..
  13. ;
  14. compile-fail threshold_color_spaces_not_compatible_fail.cpp ;
  15. run threshold_binary.cpp ;
  16. run threshold_truncate.cpp ;
  17. run threshold_otsu.cpp ;
  18. run lanczos_scaling.cpp ;
  19. run simple_kernels.cpp ;
  20. run harris.cpp ;
  21. run hessian.cpp ;
  22. run sobel_scharr.cpp ;
  23. run box_filter.cpp /boost/test//boost_unit_test_framework : : : <link>shared:<define>BOOST_TEST_DYN_LINK=1 ;
  24. run median_filter.cpp /boost/test//boost_unit_test_framework : : : <link>shared:<define>BOOST_TEST_DYN_LINK=1 ;