Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/signals/test/Jamfile @ 12

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

added boost

File size: 1.3 KB
Line 
1# Signals library
2
3# Copyright (C) 2001-2003 Douglas Gregor
4
5# Use, modification and distribution is subject to the Boost Software License,
6# Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
7# http://www.boost.org/LICENSE_1_0.txt)
8
9# For more information, see http://www.boost.org/
10
11
12# Testing Jamfile autogenerated from XML source
13subproject libs/signals/test ;
14
15# bring in rules for testing
16SEARCH on testing.jam = $(BOOST_BUILD_PATH) ;
17include testing.jam ;
18
19# Make tests run by default.
20DEPENDS all : test ;
21
22{
23  # look in BOOST_ROOT for sources first, just in this Jamfile
24  local SEARCH_SOURCE = $(BOOST_ROOT) $(SEARCH_SOURCE) ;
25
26  test-suite signals
27    :
28  [ run libs/signals/test/dead_slot_test.cpp <lib>../build/boost_signals :  :  : <define>BOOST_ALL_NO_LIB=1 :  ]
29
30  [ run libs/signals/test/deletion_test.cpp <lib>../build/boost_signals :  :  : <define>BOOST_ALL_NO_LIB=1 :  ]
31
32  [ run libs/signals/test/ordering_test.cpp <lib>../build/boost_signals :  :  : <define>BOOST_ALL_NO_LIB=1 :  ]
33
34  [ run libs/signals/test/signal_n_test.cpp <lib>../build/boost_signals :  :  : <define>BOOST_ALL_NO_LIB=1 :  ]
35
36  [ run libs/signals/test/signal_test.cpp <lib>../build/boost_signals :  :  : <define>BOOST_ALL_NO_LIB=1 :  ]
37
38  [ run libs/signals/test/trackable_test.cpp <lib>../build/boost_signals :  :  : <define>BOOST_ALL_NO_LIB=1 :  ]
39 ;
40}
41     
Note: See TracBrowser for help on using the repository browser.