Jamfile.v2 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # (C) Copyright 2004: Eric Niebler
  2. # Distributed under the Boost Software License, Version 1.0.
  3. # (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. # bring in rules for testing
  5. import testing ;
  6. project
  7. : requirements
  8. <toolset>intel:<debug-symbols>off
  9. <toolset>msvc-7.1:<debug-symbols>off
  10. <toolset>msvc-8.0:<define>_SCL_SECURE_NO_DEPRECATE
  11. <toolset>msvc-8.0:<define>_CRT_SECURE_NO_DEPRECATE
  12. <toolset>msvc-9.0:<define>_SCL_SECURE_NO_DEPRECATE
  13. <toolset>msvc-10.0:<define>_SCL_SECURE_NO_DEPRECATE
  14. <toolset>msvc-11.0:<define>_SCL_SECURE_NO_DEPRECATE
  15. <toolset>msvc-11.0:<define>_SCL_SECURE_NO_WARNINGS
  16. <toolset>gcc:<cxxflags>-ftemplate-depth-1024
  17. <library>/boost/test//boost_unit_test_framework
  18. <link>static
  19. # <define>BOOST_PROTO_DONT_USE_PREPROCESSED_FILES
  20. ;
  21. test-suite "proto"
  22. :
  23. [ run calculator.cpp ]
  24. [ run constrained_ops.cpp ]
  25. [ run cpp-next_bug.cpp ]
  26. [ run deep_copy.cpp ]
  27. [ run display_expr.cpp ]
  28. [ run deduce_domain.cpp ]
  29. [ run env_var.cpp ]
  30. [ run examples.cpp ]
  31. [ run external_transforms.cpp ]
  32. [ run lambda.cpp ]
  33. [ run make_expr.cpp ]
  34. [ run matches.cpp ]
  35. [ run flatten.cpp ]
  36. [ run switch.cpp ]
  37. [ run toy_spirit.cpp ]
  38. [ run toy_spirit2.cpp ]
  39. [ run make.cpp ]
  40. [ run mem_ptr.cpp : : : <toolset>msvc:<cxxflags>/wd4355 ]
  41. [ run mpl.cpp ]
  42. [ run noinvoke.cpp ]
  43. [ run pack_expansion.cpp ]
  44. [ run protect.cpp ]
  45. [ compile bug2407.cpp ]
  46. ;