1
0
forked from boostorg/bind

Added copyright to Jamfiles.

[SVN r17363]
This commit is contained in:
Peter Dimov
2003-02-13 15:41:26 +00:00
parent 4876b82a73
commit 8c09072ead

View File

@@ -1,4 +1,11 @@
# Boost.Bind Library test Jamfile # Boost.Bind Library test Jamfile
#
# Copyright (c) 2003 Peter Dimov
#
# Permission to copy, use, modify, sell and distribute this software
# is granted provided this copyright notice appears in all copies.
# This software is provided "as is" without express or implied
# warranty, and with no claim as to its suitability for any purpose.
subproject libs/bind/test ; subproject libs/bind/test ;
@@ -7,16 +14,13 @@ SEARCH on testing.jam = $(BOOST_BUILD_PATH) ;
include testing.jam ; include testing.jam ;
# Make tests run by default. # Make tests run by default.
DEPENDS all : test ; DEPENDS all : bind ;
{ {
# look in BOOST_ROOT for sources first, just in this Jamfile
local SEARCH_SOURCE = $(BOOST_ROOT) $(SEARCH_SOURCE) ;
test-suite "bind" test-suite "bind"
: [ run libs/bind/test/bind_test.cpp ] : [ run bind_test.cpp ]
[ run libs/bind/test/mem_fn_test.cpp ] [ run mem_fn_test.cpp ]
[ run libs/bind/test/mem_fn_void_test.cpp ] [ run mem_fn_void_test.cpp ]
[ run libs/bind/test/mem_fn_derived_test.cpp ] [ run mem_fn_derived_test.cpp ]
; ;
} }