Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/regex/test/auto-link-test/Jamfile @ 20

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

added boost

File size: 1.3 KB
Line 
1# copyright John Maddock 2003
2
3#
4# This Jamfile tests the ability of some Windows compilers
5# to automatically link to the right lib file,
6# it is not generally applicable.
7#
8
9R_SOURCE =
10basic_tests.cpp
11main.cpp
12test_alt.cpp
13test_anchors.cpp
14test_asserts.cpp
15test_backrefs.cpp
16test_deprecated.cpp
17test_emacs.cpp
18test_escapes.cpp
19test_grep.cpp
20test_locale.cpp
21test_mfc.cpp
22test_non_greedy_repeats.cpp
23test_perl_ex.cpp
24test_replace.cpp
25test_sets.cpp
26test_simple_repeats.cpp
27test_tricky_cases.cpp
28test_icu.cpp
29test_unicode.cpp
30test_overloads.cpp
31test_operators.cpp
32;
33
34
35subproject libs/regex/test/auto-link-test ;
36
37# bring in the rules for testing
38import testing ;
39
40run
41   # sources
42   <template>../../build/regex-options
43   <template>../../build/regex-test-options
44   ../regress/$(R_SOURCE)
45:
46:  # input files
47   ../regress/tests.txt
48:  # requirements
49   <library-path>../../../../stage/lib
50   <define>BOOST_LIB_DIAGNOSTIC=1
51:  # program name
52   regex_regress
53;
54
55# and now the dll versions:
56
57run
58   # sources
59   <template>../../build/regex-options
60   <template>../../build/regex-test-options
61   ../regress/$(R_SOURCE)
62:
63:  # input files
64   ../regress/tests.txt
65:  # requirements
66   <library-path>../../../../stage/lib
67   <define>BOOST_ALL_DYN_LINK=1
68   <runtime-link>dynamic
69   <define>BOOST_LIB_DIAGNOSTIC=1
70:  # program name
71   regex_regress_dll
72;
73
74
75
76
77
Note: See TracBrowser for help on using the repository browser.