Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/libs/program_options/test/Jamfile.v2 @ 45

Last change on this file since 45 was 29, checked in by landauf, 17 years ago

updated boost from 1_33_1 to 1_34_1

File size: 757 bytes
Line 
1
2project
3    : requirements
4    <library>../build//boost_program_options
5    <library>/boost/test//boost_test_exec_monitor/<link>static
6    <link>static
7   
8#    <define>_GLIBCXX_CONCEPT_CHECKS
9#    <define>_GLIBCXX_DEBUG
10    ;
11   
12rule po-test ( source )
13{
14    return
15        [ run $(source) ]
16        [ run $(source) : : : <link>shared <define>BOOST_PROGRAM_OPTIONS_DYN_LINK=1
17          : $(source:B)_dll ]
18    ;   
19}   
20
21test-suite program_options :
22
23    [ po-test options_description_test.cpp ]
24    [ po-test parsers_test.cpp ]
25    [ po-test variable_map_test.cpp ]
26    [ po-test cmdline_test.cpp ]
27    [ po-test positional_options_test.cpp ]
28    [ po-test unicode_test.cpp ]
29    [ po-test winmain.cpp ]
30    ;
31       
32exe test_convert : test_convert.cpp ;   
33
Note: See TracBrowser for help on using the repository browser.