• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2012 Karsten Ahnert
2# Copyright 2012 Mario Mulansky
3# Distributed under the Boost Software License, Version 1.0.
4# (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6import os ;
7import modules ;
8import path ;
9
10project
11    : requirements
12      <define>BOOST_ALL_NO_LIB=1
13      <include>../../../..
14      <cxxflags>-std=c++11
15      <toolset>gcc:<cxxflags>-ffast-math
16      <toolset>intel:<cxxflags>"-fast -inline-forceinline"
17    : default-build release
18    ;
19
20
21lib libgsl : : <name>gsl ;
22lib libgslcblas : : <name>gslcblas ;
23
24lib libmkl : : <name>mkl_intel_lp64 <link>shared ;
25lib libmkl_core : : <name>mkl_core <link>shared ;
26lib libmkl_intel_thread : : <name>mkl_intel_thread ;
27lib libiomp5 : : <name>iomp5 ;
28lib libpthread : : <name>pthread ;
29
30exe odeint_rk4_array
31    : odeint_rk4_array.cpp
32    ;
33