Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/tools/regression/build/Jamfile @ 12

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

added boost

File size: 746 bytes
Line 
1# Regression test status reporting tools build Jamfile
2
3subproject tools/regression/build ;
4
5exe process_jam_log
6        :
7        ../process_jam_log.cpp ../detail/tiny_xml.cpp
8        <lib>../../../libs/filesystem/build/boost_filesystem
9        :
10        <sysinclude>$(BOOST_ROOT)
11        <define>BOOST_ALL_NO_LIB=1
12        :
13        release
14        ;
15
16exe compiler_status
17        :
18        ../compiler_status.cpp ../detail/tiny_xml.cpp
19        <lib>../../../libs/filesystem/build/boost_filesystem
20        :
21        <sysinclude>$(BOOST_ROOT)
22        <define>BOOST_ALL_NO_LIB=1
23        :
24        release
25        ;
26
27stage run
28    :
29        <exe>process_jam_log
30        <exe>compiler_status
31    :
32    :
33        release
34        <suppress>true
35    ;
Note: See TracBrowser for help on using the repository browser.