summaryrefslogtreecommitdiff
path: root/libs/msm/example/mpl_graph/Jamfile.v2
diff options
context:
space:
mode:
Diffstat (limited to 'libs/msm/example/mpl_graph/Jamfile.v2')
-rw-r--r--libs/msm/example/mpl_graph/Jamfile.v234
1 files changed, 34 insertions, 0 deletions
diff --git a/libs/msm/example/mpl_graph/Jamfile.v2 b/libs/msm/example/mpl_graph/Jamfile.v2
new file mode 100644
index 0000000000..cace3af358
--- /dev/null
+++ b/libs/msm/example/mpl_graph/Jamfile.v2
@@ -0,0 +1,34 @@
+# 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 msm
+ :
+ requirements
+ <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 ]
+ ;
+