mirror of
https://github.com/boostorg/regression.git
synced 2026-01-23 18:12:08 +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.
35 lines
733 B
Plaintext
35 lines
733 B
Plaintext
# Copyright Rene Rivera 2014-2015
|
|
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
# See http://www.boost.org/LICENSE_1_0.txt
|
|
|
|
|
|
project common
|
|
: requirements
|
|
<define>BOOST_ALL_NO_LIB=1
|
|
<define>_CRT_SECURE_NO_WARNINGS
|
|
<implicit-dependency>/boost//headers
|
|
: usage-requirements
|
|
<define>BOOST_ALL_NO_LIB=1
|
|
<define>_CRT_SECURE_NO_WARNINGS
|
|
<implicit-dependency>/boost//headers
|
|
<include>../src
|
|
;
|
|
|
|
obj tiny_xml
|
|
:
|
|
../src/tiny_xml.cpp
|
|
;
|
|
explicit tiny_xml ;
|
|
|
|
obj process_jam_log
|
|
:
|
|
../src/process_jam_log.cpp
|
|
:
|
|
:
|
|
:
|
|
<source>tiny_xml
|
|
<library>/boost/filesystem//boost_filesystem/<link>static
|
|
;
|
|
explicit process_jam_log ;
|