| 1234567891011121314151617181920212223242526272829303132333435 |
- # Regression test status reporting tools build Jamfile
- subproject tools/regression/build ;
- exe process_jam_log
- :
- ../process_jam_log.cpp ../detail/tiny_xml.cpp
- <lib>../../../libs/filesystem/build/boost_filesystem
- :
- <sysinclude>$(BOOST_ROOT)
- <define>BOOST_ALL_NO_LIB=1
- :
- release
- ;
- exe compiler_status
- :
- ../compiler_status.cpp ../detail/tiny_xml.cpp
- <lib>../../../libs/filesystem/build/boost_filesystem
- :
- <sysinclude>$(BOOST_ROOT)
- <define>BOOST_ALL_NO_LIB=1
- :
- release
- ;
- stage run
- :
- <exe>process_jam_log
- <exe>compiler_status
- :
- :
- release
- <suppress>true
- ;
|