Jamfile.v2 642 B

1234567891011121314151617181920
  1. # Boost.Interval Library example Jamfile
  2. #
  3. # Copyright (c) 2018 James E. King III
  4. #
  5. # Distributed under the Boost Software License, Version 1.0. (See accompany-
  6. # ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  7. import testing ;
  8. {
  9. test-suite interval-examples
  10. : [ compile filter.cpp : <build>yes <toolset>msvc-10.0:<build>no ] # ambiguous sin()
  11. [ compile findroot_demo.cpp ]
  12. [ compile horner.cpp ]
  13. [ compile io.cpp ]
  14. [ compile newton-raphson.cpp ]
  15. [ compile rational.cpp ]
  16. # [ compile transc.cpp ] requires gmp3, mpfr
  17. ;
  18. }