• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2012 Karsten Ahnert
2# Copyright 2013 Mario Mulansky
3# Distributed under the Boost Software License, Version 1.0. (See
4# accompanying file LICENSE_1_0.txt or copy at
5# http://www.boost.org/LICENSE_1_0.txt)
6
7import testing ;
8import boost ;
9
10# boost.use-project ;
11use-project boost : $(BOOST_ROOT) ;
12
13# set your MTL4 directory here
14MTL4_INCLUDE = /home/mario/MTL4/usr/include ;
15
16project
17    : requirements
18      <library>/boost/test//boost_unit_test_framework
19      <include>$(MTL4_INCLUDE)
20      <define>BOOST_ALL_NO_LIB=1
21      <link>static
22    :
23    : default-build release
24    ;
25
26test-suite "odeint-mtl4"
27    :
28    [ run mtl4_resize.cpp ]
29    : <testing.launcher>valgrind
30    ;
31