Jamfile 509 B

1234567891011121314151617181920212223
  1. #
  2. # Copyright (C) 2015 Michael Caisse, ciere.com
  3. #
  4. # Distributed under the Boost Software License, Version 1.0. (See accompanying
  5. # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. #
  7. import testing ;
  8. project
  9. : requirements
  10. <source>..//rexpr
  11. <source>/boost//regex
  12. <source>/boost//filesystem
  13. <c++-template-depth>300
  14. ;
  15. path-constant TEST_FILES : test_files ;
  16. unit-test parse_rexpr_test
  17. : parse_rexpr_test.cpp
  18. : <testing.arg>"$(TEST_FILES)"
  19. ;