Jamfile 951 B

123456789101112131415161718192021222324252627282930313233
  1. # Boost.GIL (Generic Image Library) - core tests
  2. #
  3. # Copyright (c) 2008 Lubomir Bourdev, Hailin Jin
  4. # Copyright (c) 2018-2019 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
  8. # copy at http://www.boost.org/LICENSE_1_0.txt)
  9. import testing ;
  10. project
  11. :
  12. requirements
  13. <define>BOOST_GIL_USE_CONCEPT_CHECK=1
  14. ;
  15. alias headers_concepts : [ generate_self_contained_headers concepts ] ;
  16. alias headers : [ generate_self_contained_headers : concepts extension io ] ;
  17. build-project point ;
  18. build-project channel ;
  19. build-project color ;
  20. build-project color_base ;
  21. build-project pixel ;
  22. build-project iterator ;
  23. build-project locator ;
  24. build-project image ;
  25. build-project image_view ;
  26. build-project algorithm ;
  27. build-project image_processing ;
  28. run promote_integral.cpp /boost/test//boost_unit_test_framework : : : <link>shared:<define>BOOST_TEST_DYN_LINK=1 ;