2
0
mirror of https://github.com/boostorg/msm.git synced 2026-01-19 16:32:11 +00:00
Files
msm/example/mpl_graph/Jamfile.v2
2024-08-04 10:38:36 -05:00

36 lines
1.0 KiB
Plaintext

# msm/example/mpl_graph/Jamfile.v2 tests the mpl_graph examples
#
# Copyright (c) 2010 Gordon Woodhull
#
# Use, modification and distribution is subject to the Boost Software License,
# Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
import testing ;
project
:
requirements
<library>/boost/msm//boost_msm
<include>.
<toolset>gcc:<cxxflags>"-ftemplate-depth-300 -g0"
<toolset>darwin:<cxxflags>"-ftemplate-depth-300 -g0"
<toolset>intel:<cxxflags>"-g0"
<toolset>gcc:<optimization>off
<toolset>darwin:<optimization>off
<toolset>intel:<optimization>off
<library>/boost/test//boost_unit_test_framework/<link>static
<library>/boost/serialization//boost_serialization/<link>static
;
test-suite msm-unit-tests
:
[ compile adjacency_list_graph.cpp ]
[ compile depth_first_search.cpp ]
[ compile breadth_first_search.cpp ]
[ compile incidence_list_graph.cpp ]
[ compile msm_adaptor.cpp ]
;