Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r57762 - in sandbox/odeint: . libs/numeric/odeint/examples
From: karsten.ahnert_at_[hidden]
Date: 2009-11-18 17:24:20


Author: karsten
Date: 2009-11-18 17:24:18 EST (Wed, 18 Nov 2009)
New Revision: 57762
URL: http://svn.boost.org/trac/boost/changeset/57762

Log:
add mini build system
Added:
   sandbox/odeint/Jamfile (contents, props changed)
   sandbox/odeint/boost-build.jam (contents, props changed)
   sandbox/odeint/libs/numeric/odeint/examples/Jamfile (contents, props changed)
   sandbox/odeint/project-root.jam (contents, props changed)

Added: sandbox/odeint/Jamfile
==============================================================================
--- (empty file)
+++ sandbox/odeint/Jamfile 2009-11-18 17:24:18 EST (Wed, 18 Nov 2009)
@@ -0,0 +1,10 @@
+# Copyright 2009 Karsten Ahnert and Mario Mulansky.
+# 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)
+
+project
+ : requirements
+ <include>$BOOST_ROOT ;
+
+build-project libs/numeric/odeint/examples ;

Added: sandbox/odeint/boost-build.jam
==============================================================================
--- (empty file)
+++ sandbox/odeint/boost-build.jam 2009-11-18 17:24:18 EST (Wed, 18 Nov 2009)
@@ -0,0 +1,10 @@
+# Copyright 2009 Karsten Ahnert and Mario Mulansky.
+# 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)
+
+
+# Set the BOOST_ROOT environment variable on your command-line or in the
+# environment to point at the root of your regular Boost installation.
+
+boost-build $(BOOST_ROOT)/tools/build/v2 ;

Added: sandbox/odeint/libs/numeric/odeint/examples/Jamfile
==============================================================================
--- (empty file)
+++ sandbox/odeint/libs/numeric/odeint/examples/Jamfile 2009-11-18 17:24:18 EST (Wed, 18 Nov 2009)
@@ -0,0 +1,21 @@
+# Copyright 2009 Karsten Ahnert and Mario Mulansky.
+# 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)
+
+
+project
+ : requirements
+ <include>../../../..
+ <include>$BOOST_ROOT
+ <define>BOOST_ALL_NO_LIB=1
+ : build-dir .
+ ;
+
+exe harmonic_oscillator : harmonic_oscillator.cpp ;
+exe lorenz_cmp_rk4_rk_generic : lorenz_cmp_rk4_rk_generic.cpp ;
+exe lorenz_controlled : lorenz_controlled.cpp ;
+exe lorenz_integrate_constant_step : lorenz_integrate_constant_step.cpp ;
+exe lorenz_integrator : lorenz_integrator.cpp ;
+exe lorenz_stepper : lorenz_stepper.cpp ;
+exe pendulum_vibrating_pivot : pendulum_vibrating_pivot.cpp ;

Added: sandbox/odeint/project-root.jam
==============================================================================
--- (empty file)
+++ sandbox/odeint/project-root.jam 2009-11-18 17:24:18 EST (Wed, 18 Nov 2009)
@@ -0,0 +1,9 @@
+# Copyright 2009 Karsten Ahnert and Mario Mulansky.
+# 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 ;
+
+path-constant BOOST_ROOT : [ os.environ BOOST_ROOT ] ;


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk