Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/program_options/test/Jamfile.v2 @ 20

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

added boost

File size: 700 bytes
Line 
1
2project
3    : requirements
4    <library>../build//boost_program_options
5    <library>/boost/test//boost_test_exec_monitor
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 : $(source:B)_dll ]
17    ;   
18}   
19
20test-suite program_options :
21
22    [ po-test options_description_test.cpp ]
23    [ po-test parsers_test.cpp ]
24    [ po-test variable_map_test.cpp ]
25    [ po-test cmdline_test.cpp ]
26    [ po-test positional_options_test.cpp ]
27    [ po-test unicode_test.cpp ]
28    [ po-test winmain.cpp ]
29    ;
30       
31exe test_convert : test_convert.cpp ;   
32
Note: See TracBrowser for help on using the repository browser.