| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- # Regression test status reporting tools build Jamfile
- exe process_jam_log
- :
- ../process_jam_log.cpp ../detail/tiny_xml.cpp
- /boost/filesystem//boost_filesystem
- :
- :
- release
- ;
- exe compiler_status
- :
- ../compiler_status.cpp ../detail/tiny_xml.cpp
- /boost/filesystem//boost_filesystem
- :
- :
- release
- ;
- install dist-bin
- :
- process_jam_log
- compiler_status
- :
- <install-type>EXE
- <location>../../../dist/bin
- :
- release
- ;
- install dist-lib
- :
- process_jam_log
- compiler_status
- :
- <install-type>LIB
- <location>../../../dist/lib
- :
- release
- ;
|