Jamfile 814 B

1234567891011121314151617181920212223
  1. #==============================================================================
  2. # Copyright (c) 2001-2009 Joel de Guzman
  3. # Copyright (c) 2001-2009 Hartmut Kaiser
  4. #
  5. # Distributed under the Boost Software License, Version 1.0. (See accompanying
  6. # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  7. #==============================================================================
  8. project spirit_v2_repository/example_qi
  9. : requirements
  10. <c++-template-depth>300
  11. ;
  12. exe qi_confix : confix.cpp ;
  13. exe qi_distinct : distinct.cpp ;
  14. exe flush_multi_pass : flush_multi_pass.cpp ;
  15. exe calc1_sr : calc1_sr.cpp ;
  16. exe mini_xml2_sr : mini_xml2_sr.cpp ;
  17. exe advance : advance.cpp ;
  18. exe keywords : keywords.cpp ;
  19. exe derived : derived.cpp ;
  20. exe options : options.cpp ;
  21. exe seek : seek.cpp ;