Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/libs/signals/test/Jamfile.v2 @ 69

Last change on this file since 69 was 29, checked in by landauf, 17 years ago

updated boost from 1_33_1 to 1_34_1

File size: 826 bytes
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
10# bring in rules for testing
11import testing ;
12
13project
14    : source-location .
15    : requirements
16        <hardcode-dll-paths>true
17        <library>../../test/build//boost_test_exec_monitor
18        <library>../build//boost_signals
19        <define>BOOST_SIGNALS_STATIC_LINK
20        <link>static
21    ;
22{
23  test-suite signals
24    :
25  [ run dead_slot_test.cpp  ]
26
27  [ run deletion_test.cpp   ]
28
29  [ run ordering_test.cpp   ]
30
31  [ run signal_n_test.cpp   ]
32
33  [ run signal_test.cpp     ]
34
35  [ run trackable_test.cpp  ]
36 ;
37}
38     
Note: See TracBrowser for help on using the repository browser.