
Were trying to get the explore library tests in the sandbox to build against 1.35, and are having issues in MSVC not being able to find libboost_unit_test_framework-vc80-mt-gd-1_35.lib at link time. Everything is fine in 1.35. I've tried building both as bjam --v2 and bjam --v2 -a --build-type=complete. We're trying to get this ready for BoostCon, so if anyone has any ideas, I'd really appreciate the help. Thanks, Jared This is the jamfile # Boost.Explore Library # Copyright Jared McIntyre 2007. 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) # For more information, see http://www.boost.org # bring in rules for testing import testing ; project : source-location . : requirements ; { test-suite explore_stream : [ run is_assoc_iter.cpp ] [ run simple_types.cpp ] [ run c_array.cpp ] [ run user_defined_container.cpp ] [ run std_vector.cpp ] [ run std_deque.cpp ] [ run std_list.cpp ] [ run std_map.cpp ] [ run std_set.cpp ] [ run std_pair.cpp ] [ run boost_array.cpp ] [ run boost_tuple.cpp ] [ run boost_variant.cpp ] [ run boost_range.cpp ] [ run custom_format_simple.cpp ] [ run html_table_output.cpp ] [ run multi_dim_test.cpp ] [ run columnated.cpp ] ; }