Jamfile 684 B

12345678910111213141516171819
  1. #==============================================================================
  2. # Copyright (c) 2001-2010 Joel de Guzman
  3. # Copyright (c) 2001-2010 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-qi-benchmark
  9. : requirements
  10. <include>.
  11. <c++-template-depth>300
  12. :
  13. :
  14. ;
  15. # performance tests
  16. exe int_parser : int_parser.cpp ;
  17. exe real_parser : real_parser.cpp ;
  18. exe attr_vs_actions : attr_vs_actions.cpp ;
  19. exe keywords : keywords.cpp ;