Brian Silverman | 7c33ab2 | 2018-08-04 17:14:51 -0700 | [diff] [blame^] | 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 | |
| 6 | import os ; |
| 7 | import modules ; |
| 8 | import path ; |
| 9 | |
| 10 | project |
| 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 | |
| 21 | lib libgsl : : <name>gsl ; |
| 22 | lib libgslcblas : : <name>gslcblas ; |
| 23 | |
| 24 | lib libmkl : : <name>mkl_intel_lp64 <link>shared ; |
| 25 | lib libmkl_core : : <name>mkl_core <link>shared ; |
| 26 | lib libmkl_intel_thread : : <name>mkl_intel_thread ; |
| 27 | lib libiomp5 : : <name>iomp5 ; |
| 28 | lib libpthread : : <name>pthread ; |
| 29 | |
| 30 | exe odeint_rk4_array |
| 31 | : odeint_rk4_array.cpp |
| 32 | ; |