2
0
mirror of https://github.com/boostorg/odeint.git synced 2026-01-24 18:12:26 +00:00
Files
odeint/Jamroot
2014-04-09 08:55:52 +02:00

43 lines
1.2 KiB
Plaintext

# 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"
<toolset>clang:<cxxflags>"-Wall -Wextra -Wno-unused-function -Wno-unused-parameter -Wno-unknown-pragmas"
<toolset>intel:<cxxflags>"-ipo"
;
# tests, regression tests and examples
build-project test ;
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 ;