1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
# Boost.Signals Library
# Copyright Douglas Gregor 2001-2003. Use, modification and
# distribution is subject to the Boost Software License, Version
# 1.0. (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
# For more information, see http://www.boost.org
subproject libs/signals/example ;
exe button_click : <lib>../build/boost_signals
button_click.cpp
: <include>$(BOOST_ROOT)
;
exe difference_connection : <lib>../build/boost_signals
difference_connection.cpp
: <include>$(BOOST_ROOT)
;
exe disconnect_all : <lib>../build/boost_signals
disconnect_all.cpp
: <include>$(BOOST_ROOT)
;
exe first_positive : <lib>../build/boost_signals
first_positive.cpp
: <include>$(BOOST_ROOT)
;
exe maximum : <lib>../build/boost_signals
maximum.cpp
: <include>$(BOOST_ROOT)
;
exe print_sum_product : <lib>../build/boost_signals
print_sum_product.cpp
: <include>$(BOOST_ROOT)
;
exe quotient_controlling : <lib>../build/boost_signals
quotient_controlling.cpp
: <include>$(BOOST_ROOT)
;
exe quotient_named : <lib>../build/boost_signals
quotient_named.cpp
: <include>$(BOOST_ROOT)
;
exe no_function : <lib>../build/boost_signals
no_function.cpp
: <include>$(BOOST_ROOT)
;
|