Jamfile.v2 745 B

12345678910111213141516171819202122232425
  1. # Boost.Iostreams Library example Jamfile
  2. #
  3. # Copyright (c) 2008 James E. King III
  4. #
  5. # Distributed under the Boost Software License, Version 1.0. (See accompany-
  6. # ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  7. import testing ;
  8. project
  9. : requirements
  10. <library>/boost/iostreams//boost_iostreams
  11. <define>BOOST_ALL_NO_LIB=1
  12. # <toolset>msvc:<define>_SCL_SECURE_NO_WARNINGS
  13. ;
  14. test-suite "iostreams-examples"
  15. : [ run boost_back_inserter_example.cpp ]
  16. [ run container_sink_example.cpp ]
  17. [ run container_source_example.cpp ]
  18. [ run iterator_range_example.cpp ]
  19. [ run std_back_inserter_example.cpp ]
  20. [ run container_device_example.cpp ]
  21. ;