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 9import testing ; 10 11project msm 12 : 13 requirements 14 <include>. 15 <toolset>gcc:<cxxflags>"-ftemplate-depth-300 -g0" 16 <toolset>darwin:<cxxflags>"-ftemplate-depth-300 -g0" 17 <toolset>intel:<cxxflags>"-g0" 18 <toolset>gcc:<optimization>off 19 <toolset>darwin:<optimization>off 20 <toolset>intel:<optimization>off 21 <library>/boost/test//boost_unit_test_framework/<link>static 22 <library>/boost/serialization//boost_serialization/<link>static 23 ; 24 25 26test-suite msm-unit-tests 27 : 28 [ compile adjacency_list_graph.cpp ] 29 [ compile depth_first_search.cpp ] 30 [ compile breadth_first_search.cpp ] 31 [ compile incidence_list_graph.cpp ] 32 [ compile msm_adaptor.cpp ] 33 ; 34 35