Jamfile.v2 416 B

123456789101112131415
  1. # Boost.Tokenizer 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. test-suite "tokenizer-examples"
  9. : [ run char_sep_example_1.cpp ]
  10. [ run char_sep_example_2.cpp ]
  11. [ run char_sep_example_3.cpp ]
  12. ;