Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/signals/example/Jamfile @ 28

Last change on this file since 28 was 12, checked in by landauf, 17 years ago

added boost

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