• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
8import testing ;
9
10{
11  test-suite interval-examples
12    : [ compile filter.cpp         : <build>yes <toolset>msvc-10.0:<build>no ]  # ambiguous sin()
13      [ compile findroot_demo.cpp  ]
14      [ compile horner.cpp         ]
15      [ compile io.cpp             ]
16      [ compile newton-raphson.cpp ]
17      [ compile rational.cpp       ]
18    # [ compile transc.cpp         ] requires gmp3, mpfr
19    ;
20}
21