Jamfile.v2 762 B

12345678910111213141516171819202122232425262728293031
  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. # bring in rules for testing
  6. import testing ;
  7. use-project boost : $(BOOST_ROOT) ;
  8. project
  9. : requirements
  10. <library>/boost/test//boost_unit_test_framework
  11. <define>BOOST_ALL_NO_LIB=1
  12. <include>../../include
  13. <link>static
  14. <toolset>clang:<cxxflags>-Wno-unused-variable
  15. # <cxxflags>-D_SCL_SECURE_NO_WARNINGS
  16. ;
  17. test-suite "odeint"
  18. :
  19. [ run regression_147.cpp ]
  20. [ compile regression_149.cpp ]
  21. [ run regression_168.cpp ]
  22. [ run regression_189.cpp ]
  23. : <testing.launcher>valgrind
  24. ;