From aa25716cf6352d1a76f22b19550e0d62a889c415 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Wed, 8 Aug 2007 19:27:08 +0000 Subject: [PATCH] Update to V2 [SVN r38523] --- example/Jamfile | 48 +++++++++++------------------------------------- 1 file changed, 11 insertions(+), 37 deletions(-) diff --git a/example/Jamfile b/example/Jamfile index 4138c8e..d6e3e22 100644 --- a/example/Jamfile +++ b/example/Jamfile @@ -7,48 +7,22 @@ # For more information, see http://www.boost.org -subproject libs/signals/example ; +project : requirements ../build//boost_signals ; -exe button_click : ../build/boost_signals - button_click.cpp - : $(BOOST_ROOT) - ; +exe button_click : button_click.cpp ; -exe difference_connection : ../build/boost_signals - difference_connection.cpp - : $(BOOST_ROOT) - ; +exe difference_connection : difference_connection.cpp ; -exe disconnect_all : ../build/boost_signals - disconnect_all.cpp - : $(BOOST_ROOT) - ; +exe disconnect_all : disconnect_all.cpp ; -exe first_positive : ../build/boost_signals - first_positive.cpp - : $(BOOST_ROOT) - ; +exe first_positive : first_positive.cpp ; -exe maximum : ../build/boost_signals - maximum.cpp - : $(BOOST_ROOT) - ; -exe print_sum_product : ../build/boost_signals - print_sum_product.cpp - : $(BOOST_ROOT) - ; +exe maximum : maximum.cpp ; -exe quotient_controlling : ../build/boost_signals - quotient_controlling.cpp - : $(BOOST_ROOT) - ; +exe print_sum_product : print_sum_product.cpp ; -exe quotient_named : ../build/boost_signals - quotient_named.cpp - : $(BOOST_ROOT) - ; +exe quotient_controlling : quotient_controlling.cpp ; -exe no_function : ../build/boost_signals - no_function.cpp - : $(BOOST_ROOT) - ; +exe quotient_named : quotient_named.cpp ; + +exe no_function : no_function.cpp ;