Jamfile.v2 849 B

1234567891011121314151617181920212223242526272829303132333435
  1. # Copyright 2012-2013 Karsten Ahnert
  2. # Copyright 2012-2013 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. # bring in rules for testing
  6. import testing ;
  7. import os ;
  8. use-project boost : $(BOOST_ROOT) ;
  9. local EIGEN_ROOT = [ os.environ EIGEN_ROOT ] ;
  10. project
  11. : requirements
  12. <library>/boost/test//boost_unit_test_framework
  13. <define>BOOST_ALL_NO_LIB=1
  14. <include>$(EIGEN_ROOT)
  15. <include>../../test
  16. <link>static
  17. # <cxxflags>-D_SCL_SECURE_NO_WARNINGS
  18. ;
  19. test-suite "odeint"
  20. :
  21. [ compile is_resizeable.cpp ]
  22. [ run same_size.cpp ]
  23. [ run resize.cpp ]
  24. [ run runge_kutta4.cpp ]
  25. [ run runge_kutta_dopri5.cpp ]
  26. [ run integrate.cpp ]
  27. : <testing.launcher>valgrind
  28. ;