2
0
mirror of https://github.com/boostorg/odeint.git synced 2026-02-16 01:32:09 +00:00
Files
odeint/Jamroot
karsten 4e5f6b248b * making the system call compatible with boost::ref
* introducing ideas/units
2011-01-18 13:14:20 +00:00

49 lines
1.2 KiB
Plaintext

# Copyright 2009 Karsten Ahnert and Mario Mulansky.
# 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)
import os ;
import modules ;
import path ;
path-constant BOOST_ROOT : [ os.environ BOOST_ROOT ] ;
project
: requirements
<include>$(BOOST_ROOT) ;
build-project libs/numeric/odeint/test ;
build-project libs/numeric/odeint/examples ;
# ideas
# build-project libs/numeric/odeint/ideas/butcher ;
# build-project libs/numeric/odeint/ideas/generic_stepper ;
build-project libs/numeric/odeint/ideas/rosenbrock4 ;
build-project libs/numeric/odeint/ideas/units ;
# additional tests with external libraries :
build-project libs/numeric/odeint/test/gmp ;
# build-project libs/numeric/odeint/test/mkl ;
build-project libs/numeric/odeint/test/gsl ;
# docs:
# build-project libs/numeric/odeint/doc ;
###### The following is copied from another sandbox project #####
###### to get the quickbook and boostbook working ... #####
local boost-root = [ modules.peek : BOOST_ROOT ] ;
local explore-header-include = $(top)/../.. ;
use-project /boost/regex : $(boost-root)/libs/regex/build ;
##################################################################