Jamfile.v2 1016 B

12345678910111213141516171819202122232425262728293031323334
  1. # msm/example/mpl_graph/Jamfile.v2 tests the mpl_graph examples
  2. #
  3. # Copyright (c) 2010 Gordon Woodhull
  4. #
  5. # Use, modification and distribution is subject to the Boost Software License,
  6. # Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  7. # http://www.boost.org/LICENSE_1_0.txt)
  8. import testing ;
  9. project msm
  10. :
  11. requirements
  12. <include>.
  13. <toolset>gcc:<cxxflags>"-ftemplate-depth-300 -g0"
  14. <toolset>darwin:<cxxflags>"-ftemplate-depth-300 -g0"
  15. <toolset>intel:<cxxflags>"-g0"
  16. <toolset>gcc:<optimization>off
  17. <toolset>darwin:<optimization>off
  18. <toolset>intel:<optimization>off
  19. <library>/boost/test//boost_unit_test_framework/<link>static
  20. <library>/boost/serialization//boost_serialization/<link>static
  21. ;
  22. test-suite msm-unit-tests
  23. :
  24. [ compile adjacency_list_graph.cpp ]
  25. [ compile depth_first_search.cpp ]
  26. [ compile breadth_first_search.cpp ]
  27. [ compile incidence_list_graph.cpp ]
  28. [ compile msm_adaptor.cpp ]
  29. ;