Files
boost_optional/test/Jamfile
T
2003-01-23 19:18:35 +00:00

20 lines
425 B
Plaintext

# Boost Optional Library test Jamfile
subproject libs/optional/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 optional :
[ run libs/optional/test/optional_test.cpp ]
;
}