mirror of
https://github.com/boostorg/build.git
synced 2026-02-14 12:42:11 +00:00
19 lines
294 B
Plaintext
19 lines
294 B
Plaintext
if --v2 in $(ARGV)
|
|
{
|
|
if $(JAM_VERSION:J="") < 030103
|
|
{
|
|
ECHO "error: Boost.Jam 3.1.3 or later required" ;
|
|
EXIT ;
|
|
}
|
|
else
|
|
{
|
|
boost-build $(BOOST_ROOT)/tools/build/new/ ;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
ECHO "error: Boost.Jam --v2 required" ;
|
|
EXIT ;
|
|
}
|
|
|