Jamfile.v2 1.2 KB

1234567891011121314151617181920212223242526
  1. # Boost Exception Library test Jamfile
  2. #
  3. # Copyright (c) 2006-2009 Emil Dotchevski and Reverge Studios, Inc.
  4. #
  5. # Distributed under the Boost Software License, Version 1.0. (See accompanying
  6. # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  7. import testing ;
  8. run throw_exception_test.cpp ;
  9. run throw_exception_no_exceptions_test.cpp ;
  10. run throw_exception_no_integration_test.cpp ;
  11. run throw_exception_no_both_test.cpp ;
  12. compile-fail throw_exception_fail.cpp ;
  13. run throw_exception_test2.cpp ;
  14. run throw_exception_test3.cpp ;
  15. run throw_exception_test4.cpp ;
  16. lib lib1_throw : lib1_throw.cpp : <define>LIB1_SOURCE=1 <link>shared:<define>LIB1_DYN_LINK=1 : : <link>shared:<define>LIB1_DYN_LINK=1 ;
  17. lib lib2_throw : lib2_throw.cpp : <define>LIB2_SOURCE=1 <link>shared:<define>LIB2_DYN_LINK=1 : : <link>shared:<define>LIB2_DYN_LINK=1 ;
  18. lib lib3_throw : lib3_throw.cpp : <define>LIB3_SOURCE=1 <link>shared:<define>LIB3_DYN_LINK=1 : : <link>shared:<define>LIB3_DYN_LINK=1 ;
  19. run throw_from_library_test.cpp lib1_throw lib2_throw lib3_throw : : : <link>static : throw_from_library_static ;
  20. run throw_from_library_test.cpp lib1_throw lib2_throw lib3_throw : : : <link>shared : throw_from_library_shared ;