Jamfile.v2 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. # Copyright (C) 2009-2012 Lorenzo Caminiti
  2. # Distributed under the Boost Software License, Version 1.0
  3. # (see accompanying file LICENSE_1_0.txt or a copy at
  4. # http://www.boost.org/LICENSE_1_0.txt)
  5. # Home at http://www.boost.org/libs/local_function
  6. import testing ;
  7. # Sun does not automatically detect type-of emulation mode (force it).
  8. project : requirements <toolset>sun:<define>BOOST_TYPEOF_EMULATION ;
  9. run add_cxx11_lambda.cpp ;
  10. run add_global_functor.cpp ;
  11. run add_local_functor.cpp ;
  12. run add_phoenix.cpp ;
  13. run const_block.cpp ;
  14. compile-fail const_block_error.cpp : <variant>debug : ;
  15. run const_block_error.cpp : <variant>release : ;
  16. compile-fail const_block_error_cxx11_lambda.cpp ;
  17. run expensive_copy_cxx11_lambda.cpp ;
  18. run expensive_copy_local_function.cpp ;
  19. run gcc_access.cpp ;
  20. run gcc_lambda.cpp ;
  21. run gcc_cxx11_lambda.cpp ;
  22. run gcc_square.cpp ;
  23. run gcc_store.cpp ;
  24. run impl_pp_keyword.cpp ;
  25. run impl_tparam_tricks.cpp ;
  26. run n2529_this.cpp ;
  27. run n2550_find_if.cpp ;
  28. compile-fail noncopyable_cxx11_lambda_error.cpp ;
  29. run noncopyable_local_function.cpp ;
  30. run phoenix_factorial.cpp ;
  31. run phoenix_factorial_local.cpp ;
  32. # Only compile but do not run profiling programs (they take a long time to run).
  33. exe profile_global_functor : profile_global_functor.cpp
  34. : <library>/boost/chrono//boost_chrono
  35. <library>/boost/system//boost_system
  36. <link>static
  37. ;
  38. exe profile_cxx11_lambda : profile_cxx11_lambda.cpp
  39. : <library>/boost/chrono//boost_chrono
  40. <library>/boost/system//boost_system
  41. <link>static
  42. ;
  43. exe profile_local_function : profile_local_function.cpp
  44. : <library>/boost/chrono//boost_chrono
  45. <library>/boost/system//boost_system
  46. <link>static
  47. ;
  48. exe profile_local_function_inline : profile_local_function_inline.cpp
  49. : <library>/boost/chrono//boost_chrono
  50. <library>/boost/system//boost_system
  51. <link>static
  52. ;
  53. exe profile_local_functor : profile_local_functor.cpp
  54. : <library>/boost/chrono//boost_chrono
  55. <library>/boost/system//boost_system
  56. <link>static
  57. ;
  58. exe profile_phoenix : profile_phoenix.cpp
  59. : <library>/boost/chrono//boost_chrono
  60. <library>/boost/system//boost_system
  61. <link>static
  62. ;
  63. run scope_exit.cpp ;