diff options
Diffstat (limited to 'src/boost/libs/property_tree/test/Jamfile.v2')
-rw-r--r-- | src/boost/libs/property_tree/test/Jamfile.v2 | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/boost/libs/property_tree/test/Jamfile.v2 b/src/boost/libs/property_tree/test/Jamfile.v2 new file mode 100644 index 00000000..af25731d --- /dev/null +++ b/src/boost/libs/property_tree/test/Jamfile.v2 @@ -0,0 +1,27 @@ +# Boost.PropertyTree +# +# Copyright (c) 2009 Sebastian Redl +# +# Distributed under 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) + +# bring in rules for testing +import testing ; + +project + : requirements + <link>static + <toolset>msvc:<define>_SCL_SECURE_NO_WARNINGS=1 + ; + +test-suite "property_tree" + : [ run test_property_tree.cpp /boost/serialization//boost_serialization ] + [ run test_info_parser.cpp ] + [ run test_json_parser.cpp ] + [ run test_json_parser2.cpp /boost/test//boost_unit_test_framework ] + [ run test_ini_parser.cpp ] + [ run test_xml_parser_rapidxml.cpp ] + + [ run test_multi_module1.cpp test_multi_module2.cpp ] +; |