-
Notifications
You must be signed in to change notification settings - Fork 101
/
Jamroot
43 lines (35 loc) · 1.32 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
# Copyright 2009-2012 Karsten Ahnert
# Copyright 2010-2013 Mario Mulansky
# Copyright 2013 Pascal Germroth
# 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>include&&$(BOOST_ROOT)
<toolset>gcc:<cxxflags>"-Wall -Wno-unused-parameter -Wno-unused-variable -Wno-unknown-pragmas -Wno-unused-local-typedefs"
<toolset>clang:<cxxflags>"-Wall -Wextra -Wno-unknown-warning-option -Wno-unused-function -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedef"
<toolset>intel:<cxxflags>"-ipo"
;
# tests, regression tests and examples
build-project test ;
build-project test/numeric ;
build-project examples ;
# build-project performance ;
# build-project openmp ;
# build-project performance/mpi ;
# additional tests with external libraries :
# build-project test_external/eigen ;
# build-project test_external/gmp ;
# build-project test_external/gsl ;
# build-project test_external/mkl ;
# build-project test_external/mtl4 ;
# build-project test_external/thrust ;
# build-project test_external/vexcl ;
# build-project test_external/mpi ;
# documentation:
# build-project doc ;