forked from headmyshoulder/odeint-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJamroot
46 lines (30 loc) · 1.27 KB
/
Jamroot
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
# 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)
<cxxflags>"-Werror -Wall -Wextra"
<toolset>gcc:<cxxflags>"-Wno-unused-parameter"
<toolset>clang:<cxxflags>"-Wno-unused-function -Wno-unused-parameter"
;
# tests, regression tests and examples
build-project libs/numeric/odeint/test ;
build-project libs/numeric/odeint/examples ;
# additional tests with external libraries :
# build-project libs/numeric/odeint/test_external/gmp ;
# build-project libs/numeric/odeint/test_external/mkl ;
# build-project libs/numeric/odeint/test_external/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 ;
##################################################################