Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/algorithm/string/example/Jamfile @ 12

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

added boost

File size: 1.2 KB
Line 
1#  Boost string_algo library examples Jamfile  ---------------------------------
2#
3#  Copyright Pavol Droba 2002-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#  See http://www.boost.org for updates, documentation, and revision history.
9
10subproject libs/algorithm/string/example ;
11
12exe conv_example
13    :
14    conv_example.cpp
15    :
16    <include>$(BOOST_ROOT)     
17    :
18    ;
19
20exe predicate_example
21    :
22    predicate_example.cpp
23    :
24    <include>$(BOOST_ROOT)     
25    :
26    ;
27
28exe find_example
29    :
30    find_example.cpp
31    :
32    <include>$(BOOST_ROOT)     
33    :
34    ;
35
36exe replace_example
37    :
38    replace_example.cpp
39    :
40    <include>$(BOOST_ROOT)     
41    :
42    ;
43
44exe rle_example
45    :
46    rle_example.cpp
47    :
48    <include>$(BOOST_ROOT)     
49    :
50    ;
51
52exe trim_example
53    :
54    trim_example.cpp
55    :
56    <include>$(BOOST_ROOT)
57    :
58    ;
59
60exe regex_example
61    :
62    regex_example.cpp
63    <lib>../../../regex/build/boost_regex
64    :
65    <include>$(BOOST_ROOT)     
66    :
67    ;
68
69exe split_example
70    :
71    split_example.cpp
72    :
73    <include>$(BOOST_ROOT)
74    :
75    ;
Note: See TracBrowser for help on using the repository browser.