Files
boost_bind/test/Jamfile
T
2003-01-24 16:05:26 +00:00

23 lines
585 B
Plaintext

# Boost.Bind Library test Jamfile
subproject libs/bind/test ;
# bring in rules for testing
SEARCH on testing.jam = $(BOOST_BUILD_PATH) ;
include testing.jam ;
# Make tests run by default.
DEPENDS all : test ;
{
# look in BOOST_ROOT for sources first, just in this Jamfile
local SEARCH_SOURCE = $(BOOST_ROOT) $(SEARCH_SOURCE) ;
test-suite "bind"
: [ run libs/bind/test/bind_test.cpp ]
[ run libs/bind/test/mem_fn_test.cpp ]
[ run libs/bind/test/mem_fn_void_test.cpp ]
[ run libs/bind/test/mem_fn_derived_test.cpp ]
;
}