forked from boostorg/bind
23 lines
585 B
Plaintext
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 ]
|
|
;
|
|
}
|