Jamfile.v2 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # Copyright 2009-2013 Karsten Ahnert
  2. # Copyright 2010-2013 Mario Mulansky
  3. # Copyright 2013 Pascal Germroth
  4. # Distributed under the Boost Software License, Version 1.0. (See
  5. # accompanying file LICENSE_1_0.txt or copy at
  6. # http://www.boost.org/LICENSE_1_0.txt)
  7. project
  8. : requirements
  9. <define>BOOST_ALL_NO_LIB=1
  10. :
  11. ;
  12. exe harmonic_oscillator : harmonic_oscillator.cpp ;
  13. exe solar_system : solar_system.cpp ;
  14. exe chaotic_system : chaotic_system.cpp ;
  15. exe stiff_system : stiff_system.cpp ;
  16. exe fpu : fpu.cpp ;
  17. exe phase_oscillator_ensemble : phase_oscillator_ensemble.cpp ;
  18. exe harmonic_oscillator_units : harmonic_oscillator_units.cpp : <toolset>clang:<build>no ;
  19. exe stuart_landau : stuart_landau.cpp ;
  20. exe two_dimensional_phase_lattice : two_dimensional_phase_lattice.cpp ;
  21. exe bulirsch_stoer : bulirsch_stoer.cpp ;
  22. exe elliptic_functions : elliptic_functions.cpp ;
  23. exe resizing_lattice : resizing_lattice.cpp ;
  24. exe list_lattice : list_lattice.cpp ;
  25. exe stepper_details : stepper_details.cpp ;
  26. exe my_vector : my_vector.cpp ;
  27. exe lorenz : lorenz.cpp ;
  28. exe lorenz_point : lorenz_point.cpp ;
  29. exe van_der_pol_stiff : van_der_pol_stiff.cpp ;
  30. exe simple1d : simple1d.cpp ;
  31. exe stochastic_euler : stochastic_euler.cpp ;
  32. exe generation_functions : generation_functions.cpp ;
  33. exe heun : heun.cpp ;
  34. exe bind_member_functions : bind_member_functions.cpp ;
  35. exe bind_member_functions_cpp11 : bind_member_functions_cpp11.cpp : <cxxflags>-std=c++0x ;
  36. exe molecular_dynamics : molecular_dynamics.cpp : <cxxflags>-std=c++0x ;
  37. exe molecular_dynamics_cells : molecular_dynamics_cells.cpp : <cxxflags>-std=c++0x ;
  38. exe abm_precision : abm_precision.cpp ;
  39. exe integrate_times : integrate_times.cpp ;
  40. exe find_crossing : find_crossing.cpp : <cxxflags>-std=c++0x ;
  41. build-project multiprecision ;
  42. # build-project mtl ;
  43. # build-project ublas ;
  44. # build-project gmpxx ;
  45. # build-project openmp ;
  46. # build-project mpi ;