$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Beman Dawes (bdawes_at_[hidden])
Date: 2002-07-15 15:06:43
I'm trying to use testing.jam to run some tests from this Jamfile in the
boost-root/libs/filesystem/test directory:
subproject libs/filesystem/test ;
SEARCH on testing.jam = $(BOOST_BUILD_PATH) ;
include testing.jam ;
{
# look in BOOST_ROOT for sources first, just in this Jamfile
local SEARCH_SOURCE = $(BOOST_ROOT) $(SEARCH_SOURCE) ;
run libs/filesystem/test/path_test.cpp
<lib>../../../libs/filesystem/build/fs ;
}
Works as expected (link errors) if you comment out the <lib> line. But
with that line uncommented (as above), it still gets link errors.
The .CMD file only mentions path_test.obj, not libfs.lib.
Any ideas?
--Beman