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 8import testing ; 9 10project 11 : requirements 12 <library>/boost/iostreams//boost_iostreams 13 <define>BOOST_ALL_NO_LIB=1 14 # <toolset>msvc:<define>_SCL_SECURE_NO_WARNINGS 15 ; 16 17test-suite "iostreams-examples" 18 : [ run boost_back_inserter_example.cpp ] 19 [ run container_sink_example.cpp ] 20 [ run container_source_example.cpp ] 21 [ run iterator_range_example.cpp ] 22 [ run std_back_inserter_example.cpp ] 23 [ run container_device_example.cpp ] 24 ; 25 26