Added V2 Jamfiles for some libraries. Arranged to "bjam --v2" to invoke new

build system.


[SVN r15712]
This commit is contained in:
Vladimir Prus 2002-10-04 15:00:03 +00:00
parent 9377a00b85
commit 545ab393a8
5 changed files with 27 additions and 5 deletions

7
Jamfile.v2 Normal file
View file

@ -0,0 +1,7 @@
project boost
: requirements <include>.
;
build-project libs/test/build ;
build-project libs/date_time/build ;

View file

@ -1,2 +1,18 @@
BOOST_ROOT = $(.boost-build-file:D) ;
boost-build tools/build ;
if --v2 in $(ARGV)
{
if $(JAM_VERSION:J="") < 030103
{
ECHO "error: Boost.Jam 3.1.3 or later required" ;
EXIT ;
}
else
{
JAMFILE = Jamfile.v2 ;
boost-build tools/build/new ;
}
}
else
{
boost-build tools/build ;
}

@ -1 +1 @@
Subproject commit 5cd11255f906cc3ae9dc910eff2e586fed148018
Subproject commit f207d1672541f02465abb75cdc5b6b312cc010b0

@ -1 +1 @@
Subproject commit 8bcc3c40b04d35af33b999a1ecaed9eccf699282
Subproject commit e927fc314f5158f7fe8fb9f9cdf49126cd4a1c3d

View file

@ -1,3 +1,2 @@
# empty file for now, just to satisfy requirements for Boost.Build v2 testing
import gcc ;