File: Jamfile.v2

package info (click to toggle)
boost1.83 1.83.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 545,632 kB
  • sloc: cpp: 3,857,086; xml: 125,552; ansic: 34,414; python: 25,887; asm: 5,276; sh: 4,799; ada: 1,681; makefile: 1,629; perl: 1,212; pascal: 1,139; sql: 810; yacc: 478; ruby: 102; lisp: 24; csh: 6
file content (49 lines) | stat: -rw-r--r-- 1,711 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Boost Interval Library test Jamfile
#
# Copyright 2003 Guillaume Melquiond
#
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or
# copy at http://www.boost.org/LICENSE_1_0.txt)

project
  :
  source-location $(BOOST_ROOT)
  :
  requirements
    # Enable dynamic rounding on Tru64 (Alpha CPU).
    <toolset>hp_cxx,<os>OSF:<cflags>"-fprm d"
    <toolset>gcc,<os>OSF:<cflags>-mfp-rounding-mode=d
    <toolset>gcc:<cxxflags>-frounding-math
    <toolset>clang:<cxxflags>-frounding-math
    <toolset>msvc:<cxxflags>/fp\:strict
  ;

# bring in rules for testing
import testing ;

{
  test-suite numeric/interval :
    [ compile libs/numeric/interval/test/integer.cpp ]

    [ run libs/numeric/interval/test/add.cpp      ]
    [ run libs/numeric/interval/test/det.cpp      ]
    [ run libs/numeric/interval/test/fmod.cpp     ]
    [ run libs/numeric/interval/test/msvc_x64_flags.cpp : : : <build>no <toolset>msvc:<build>yes ]
    [ run libs/numeric/interval/test/mul.cpp      ]
    [ run libs/numeric/interval/test/overflow.cpp ]
    [ run libs/numeric/interval/test/pi.cpp       ]
    [ run libs/numeric/interval/test/pow.cpp      ]

    [ run libs/numeric/interval/test/cmp.cpp ]
    [ run libs/numeric/interval/test/cmp_exn.cpp ]
    [ run libs/numeric/interval/test/cmp_exp.cpp ]
    [ run libs/numeric/interval/test/cmp_lex.cpp ]
    [ run libs/numeric/interval/test/cmp_set.cpp ]
 # https://github.com/boostorg/interval/issues/15
 #  [ run libs/numeric/interval/test/cmp_tribool.cpp ]
    [ run libs/numeric/interval/test/test_float.cpp
      : : : <build>yes <toolset>msvc-10.0:<build>no ]
            # https://github.com/boostorg/interval/issues/17
  ;
}