Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/algorithm/minmax/test/Jamfile @ 12

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

added boost

File size: 712 bytes
Line 
1# Boost.Minmax Library Test Jamfile
2#
3# Copyright (C) 2002--2004, Herve Bronnimann
4#
5# Use, modification, and distribution is subject to the Boost Software
6# License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
7# http://www.boost.org/LICENSE_1_0.txt)
8#
9
10subproject libs/algorithm/minmax/test ;
11
12# bring in rules for testing
13import testing ;
14
15# Make tests run by default.
16DEPENDS all : test ;
17
18{
19  test-suite algorithm/minmax
20        : [ run
21                minmax_element_test.cpp
22              : :
23                :
24                : minmax_element
25            ]
26          [ run
27                minmax_test.cpp
28              : :
29                :
30                : minmax
31            ]
32  ;
33}
Note: See TracBrowser for help on using the repository browser.