diff --git a/examples/Jamfile.v2 b/examples/Jamfile.v2 index dfb43654..8c5785f1 100644 --- a/examples/Jamfile.v2 +++ b/examples/Jamfile.v2 @@ -5,14 +5,16 @@ # accompanying file LICENSE_1_0.txt or copy at # http://www.boost.org/LICENSE_1_0.txt) +using python ; project - : requirements + : requirements + /boost/odeint//boost_odeint BOOST_ALL_NO_LIB=1 /python//python - : + : ; - + exe harmonic_oscillator : harmonic_oscillator.cpp ; exe solar_system : solar_system.cpp ; diff --git a/performance/Jamfile.v2 b/performance/Jamfile.v2 index aa2361c0..0e22a4e0 100644 --- a/performance/Jamfile.v2 +++ b/performance/Jamfile.v2 @@ -5,18 +5,19 @@ import os ; import modules ; -import path ; +import path ; project : requirements + /boost/odeint//boost_odeint BOOST_ALL_NO_LIB=1 11 gcc:-ffast-math intel:"-fast -inline-forceinline" : default-build release ; - - + + lib libgsl : : gsl ; lib libgslcblas : : gslcblas ; diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index cd107689..905f5dd9 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -7,13 +7,13 @@ # bring in rules for testing -require-b2 5.0.1 ; -import-search /boost/config/checks ; import testing ; +import-search /boost/config/checks ; import config : requires ; project : requirements + /boost/odeint//boost_odeint BOOST_ALL_NO_LIB=1 # use test library /boost/test//boost_unit_test_framework @@ -81,10 +81,10 @@ test-suite "odeint" [ compile unwrap_boost_reference.cpp ] [ compile unwrap_reference.cpp ] [ compile std_array.cpp ] - : + : valgrind ; - + # also run numeric tests build-project numeric ;