Imported Upstream version 1.57.0
[platform/upstream/boost.git] / libs / numeric / odeint / test / numeric / Jamfile.v2
1 # Copyright 2012 Karsten Ahnert
2 # Copyright 2012 Mario Mulansky
3 # Distributed under the Boost Software License, Version 1.0.
4 # (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6 # bring in rules for testing
7
8
9 import testing ;
10
11 use-project boost : $(BOOST_ROOT) ;
12
13 project
14     : requirements
15       <library>/boost/test//boost_unit_test_framework
16       <define>BOOST_ALL_NO_LIB=1
17       <include>../../include
18       <link>static
19       <toolset>clang:<cxxflags>-Wno-unused-variable
20
21 # <cxxflags>-D_SCL_SECURE_NO_WARNINGS
22     ;
23
24 test-suite "odeint"
25      :
26      [ run runge_kutta.cpp ]
27      [ run symplectic.cpp ]
28      [ run rosenbrock.cpp ]
29      [ run adams_bashforth.cpp ]
30      [ run adams_bashforth_moulton.cpp ]
31      : <testing.launcher>valgrind
32      ;