mirror of
https://github.com/boostorg/regression.git
synced 2026-01-19 04:42:10 +00:00
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.
19 lines
506 B
Plaintext
19 lines
506 B
Plaintext
# Copyright Rene Rivera 2015
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
# See http://www.boost.org/LICENSE_1_0.txt
|
|
|
|
import modules ;
|
|
|
|
path-constant BOOST_ROOT : [ modules.peek : BOOST_ROOT ] ;
|
|
path-constant INSTALL_PREFIX : [ modules.peek : INSTALL_PREFIX ] ;
|
|
path-constant INSTALL_PREFIX_EXEC : [ modules.peek : INSTALL_PREFIX_EXEC ] ;
|
|
|
|
use-project /boost : $(BOOST_ROOT) ;
|
|
|
|
project boost_regression
|
|
:
|
|
: requirements
|
|
<dependency>/boost//headers
|
|
: build-dir bin
|
|
;
|