Files
regression/library_status/build/Jamfile.jam
Rene Rivera 4e68ae0d6c Lots of cleanup of obsolete files and updating of build scripts (and
sources) to make for easier to use build and use. Still in progress..

* Added build options and logic to set boost-root, boost-build, and
install location.
* Added general build script to install all the various testing utility
programs.
* Refactored process_jam_log so that it can be shared and incorporated
directly into other programs (i.e. library_status).
* Redoing library_status to be single program run that does the complete
build+process+generate data for a library.
2015-04-07 10:26:30 -05:00

28 lines
602 B
Plaintext

# Copyright Rene Rivera 2015
# Distributed under the Boost Software License, Version 1.0.
# See http://www.boost.org/LICENSE_1_0.txt
exe library_status
:
../src/library_status.cpp
../../common/build//process_jam_log
../../common/build//tiny_xml
/boost/filesystem//boost_filesystem/<link>static
:
<define>BOOST_ALL_NO_LIB=1
<implicit-dependency>/boost//headers
;
explicit library_status ;
alias install : exec ;
install exec
:
library_status/<variant>release
:
<install-type>EXE
<location>$(INSTALL_PREFIX_EXEC)
;
explicit install exec ;