Jamfile.v2 634 B

1234567891011121314151617181920212223
  1. # Copyright (C) 2006-2009, 2012 Alexander Nasonov
  2. # Copyright (C) 2012 Lorenzo Caminiti
  3. # Distributed under the Boost Software License, Version 1.0
  4. # (see accompanying file LICENSE_1_0.txt or a copy at
  5. # http://www.boost.org/LICENSE_1_0.txt)
  6. # Home at http://www.boost.org/libs/scope_exit
  7. import testing ;
  8. # Sun does not automatically detect type-of emulation mode (force it).
  9. project : requirements <toolset>sun:<define>BOOST_TYPEOF_EMULATION ;
  10. run try_catch.cpp ;
  11. run try_catch_seq.cpp ;
  12. run try_catch_seq_nova.cpp ;
  13. run scope_guard.cpp ;
  14. run scope_guard_seq.cpp ;
  15. run scope_guard_seq_nova.cpp ;
  16. run world_cxx11_lambda.cpp ;