Jamfile 388 B

1234567891011121314
  1. # Boost.Function Library example Jamfile
  2. #
  3. # Copyright (c) 2008 James E. King III
  4. #
  5. # Distributed under the Boost Software License, Version 1.0.
  6. # See accompanying file LICENSE_1_0.txt or copy at
  7. # http://www.boost.org/LICENSE_1_0.txt
  8. import ../../config/checks/config : requires ;
  9. import testing ;
  10. run bind1st.cpp : : : [ requires cxx98_binders ] ;
  11. run int_div.cpp ;
  12. run sum_avg.cpp ;