| 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 | |
|---|
| 9 | R_SOURCE = |
|---|
| 10 | basic_tests.cpp |
|---|
| 11 | main.cpp |
|---|
| 12 | test_alt.cpp |
|---|
| 13 | test_anchors.cpp |
|---|
| 14 | test_asserts.cpp |
|---|
| 15 | test_backrefs.cpp |
|---|
| 16 | test_deprecated.cpp |
|---|
| 17 | test_emacs.cpp |
|---|
| 18 | test_escapes.cpp |
|---|
| 19 | test_grep.cpp |
|---|
| 20 | test_locale.cpp |
|---|
| 21 | test_mfc.cpp |
|---|
| 22 | test_non_greedy_repeats.cpp |
|---|
| 23 | test_perl_ex.cpp |
|---|
| 24 | test_replace.cpp |
|---|
| 25 | test_sets.cpp |
|---|
| 26 | test_simple_repeats.cpp |
|---|
| 27 | test_tricky_cases.cpp |
|---|
| 28 | test_icu.cpp |
|---|
| 29 | test_unicode.cpp |
|---|
| 30 | test_overloads.cpp |
|---|
| 31 | test_operators.cpp |
|---|
| 32 | ; |
|---|
| 33 | |
|---|
| 34 | |
|---|
| 35 | subproject libs/regex/test/auto-link-test ; |
|---|
| 36 | |
|---|
| 37 | # bring in the rules for testing |
|---|
| 38 | import testing ; |
|---|
| 39 | |
|---|
| 40 | run |
|---|
| 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 | |
|---|
| 57 | run |
|---|
| 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.