Jamfile.v2 846 B

123456789101112131415161718192021222324252627282930
  1. # copyright John Maddock 2003
  2. # Use, modification and distribution are subject to the
  3. # Boost Software License, Version 1.0. (See accompanying file
  4. # LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. # bring in the rules for testing
  6. import testing ;
  7. test-suite static_assert :
  8. [ run static_assert_test.cpp ]
  9. [ compile-fail static_assert_test_fail_1.cpp ]
  10. [ compile-fail static_assert_test_fail_2.cpp ]
  11. [ compile-fail static_assert_test_fail_3.cpp ]
  12. [ compile-fail static_assert_test_fail_4.cpp ]
  13. [ compile-fail static_assert_test_fail_5.cpp ]
  14. [ compile-fail static_assert_test_fail_6.cpp ]
  15. [ compile-fail static_assert_test_fail_7.cpp ]
  16. [ compile-fail static_assert_test_fail_8.cpp ]
  17. [ compile-fail static_assert_test_fail_9.cpp ]
  18. [ compile-fail static_assert_test_fail_10.cpp ]
  19. ;
  20. build-project ../example ;