Files
iterator/example/Jamfile

24 lines
742 B
Plaintext
Raw Normal View History

# Copyright David Abrahams 2006. Distributed under the Boost
# Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
subproject libs/iterator/example ;
import testing ;
2004-01-12 02:49:55 +00:00
# Make tests run by default.
DEPENDS all : test ;
test-suite iterator_examples
: [ run reverse_iterator.cpp ]
[ run node_iterator1.cpp ]
[ run node_iterator2.cpp ]
[ run node_iterator3.cpp ]
2004-01-14 03:56:16 +00:00
[ run counting_iterator_example.cpp ]
[ run filter_iterator_example.cpp ]
2004-09-18 13:32:24 +00:00
[ run func_output_iter_example.cpp ]
2004-01-14 03:56:16 +00:00
[ run indirect_iterator_example.cpp ]
2004-09-18 13:32:24 +00:00
[ run permutation_iter_example.cpp ]
2004-01-14 03:56:16 +00:00
[ run reverse_iterator_example.cpp ]
[ run transform_iterator_example.cpp ]
;