Jamfile 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. #==============================================================================
  2. # Copyright (c) 2002 Joel de Guzman
  3. # http://spirit.sourceforge.net/
  4. #
  5. # Use, modification and distribution is subject to the Boost Software
  6. # License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  7. # http://www.boost.org/LICENSE_1_0.txt)
  8. #==============================================================================
  9. #
  10. # Phoenix examples boost-jam file
  11. # Joel de Guzman [Sept 27, 2002]
  12. #
  13. unit-test binary_tests
  14. : binary_tests.cpp
  15. :
  16. ;
  17. unit-test binders_tests
  18. : binders_tests.cpp
  19. :
  20. ;
  21. unit-test functors_tests
  22. : functors_tests.cpp
  23. :
  24. ;
  25. unit-test iostream_tests
  26. : iostream_tests.cpp
  27. :
  28. ;
  29. unit-test mixed_binary_tests
  30. : mixed_binary_tests.cpp
  31. :
  32. ;
  33. unit-test more_expressions_tests
  34. : more_expressions_tests.cpp
  35. :
  36. ;
  37. unit-test primitives_tests
  38. : primitives_tests.cpp
  39. :
  40. ;
  41. unit-test statements_tests
  42. : statements_tests.cpp
  43. :
  44. ;
  45. unit-test stl_tests
  46. : stl_tests.cpp
  47. :
  48. ;
  49. unit-test tuples_tests
  50. : tuples_tests.cpp
  51. :
  52. ;
  53. unit-test unary_tests
  54. : unary_tests.cpp
  55. :
  56. ;
  57. unit-test new_tests
  58. : new_test.cpp
  59. :
  60. ;