mirror of
https://github.com/boostorg/build.git
synced 2026-02-16 13:22:11 +00:00
Bison and lex support.
unit-test rule
--version option
default build really works
* new/build-system.jam: Bugfixes. Added "--version" option.
* new/project.jam: If default-build is not specifies, don't stick "debug".
* new/property.jam (evaluate-conditionals): New rule.
* new/targets.jam (basic-target.generate): Evalute conditional properties.
* test/BoostBuild.py (Tester.maybe_do_diff): New method.
(Tester.run_build_system): Call the above method when
appropriate.
[SVN r15771]
18 lines
238 B
Plaintext
18 lines
238 B
Plaintext
|
|
rule boost-build ( )
|
|
{
|
|
return "V2 (Milestone 2)" ;
|
|
}
|
|
rule jam ( )
|
|
{
|
|
local v = [ modules.peek : JAM_VERSION ] ;
|
|
return $(v:J=.) ;
|
|
}
|
|
|
|
|
|
rule print ( )
|
|
{
|
|
ECHO "Boost.Build" [ boost-build ] ;
|
|
ECHO "Boost.Jam" [ jam ] ;
|
|
}
|