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 | |
---|
10 | subproject libs/algorithm/string/example ; |
---|
11 | |
---|
12 | exe conv_example |
---|
13 | : |
---|
14 | conv_example.cpp |
---|
15 | : |
---|
16 | <include>$(BOOST_ROOT) |
---|
17 | : |
---|
18 | ; |
---|
19 | |
---|
20 | exe predicate_example |
---|
21 | : |
---|
22 | predicate_example.cpp |
---|
23 | : |
---|
24 | <include>$(BOOST_ROOT) |
---|
25 | : |
---|
26 | ; |
---|
27 | |
---|
28 | exe find_example |
---|
29 | : |
---|
30 | find_example.cpp |
---|
31 | : |
---|
32 | <include>$(BOOST_ROOT) |
---|
33 | : |
---|
34 | ; |
---|
35 | |
---|
36 | exe replace_example |
---|
37 | : |
---|
38 | replace_example.cpp |
---|
39 | : |
---|
40 | <include>$(BOOST_ROOT) |
---|
41 | : |
---|
42 | ; |
---|
43 | |
---|
44 | exe rle_example |
---|
45 | : |
---|
46 | rle_example.cpp |
---|
47 | : |
---|
48 | <include>$(BOOST_ROOT) |
---|
49 | : |
---|
50 | ; |
---|
51 | |
---|
52 | exe trim_example |
---|
53 | : |
---|
54 | trim_example.cpp |
---|
55 | : |
---|
56 | <include>$(BOOST_ROOT) |
---|
57 | : |
---|
58 | ; |
---|
59 | |
---|
60 | exe regex_example |
---|
61 | : |
---|
62 | regex_example.cpp |
---|
63 | <lib>../../../regex/build/boost_regex |
---|
64 | : |
---|
65 | <include>$(BOOST_ROOT) |
---|
66 | : |
---|
67 | ; |
---|
68 | |
---|
69 | exe split_example |
---|
70 | : |
---|
71 | split_example.cpp |
---|
72 | : |
---|
73 | <include>$(BOOST_ROOT) |
---|
74 | : |
---|
75 | ; |
---|
Note: See
TracBrowser
for help on using the repository browser.