mirror of
https://github.com/boostorg/build.git
synced 2026-02-11 23:52:20 +00:00
* new/common.jam (copy): New rule. * new/targets.jam (main-target.generate): Use a different algorith for selecting subvariant. Favour one with the longest intersection of requirements with build properties. * new/virtual-target.jam (virtual-target): Eliminate 'subvariant' attribute. Use properties of action to for the same purpose. New methods 'set-path' and 'extra-grist'. [SVN r16129]
20 lines
307 B
Python
20 lines
307 B
Python
#!/usr/bin/python
|
|
|
|
# Test staging
|
|
|
|
from BoostBuild import Tester
|
|
t = Tester()
|
|
|
|
t.write("project-root.jam", "import gcc ;")
|
|
t.write("Jamfile", """
|
|
lib a : a.cpp ;
|
|
stage dist : a a.h ;
|
|
""")
|
|
t.write("a.cpp", "")
|
|
t.write("a.h", "")
|
|
|
|
t.run_build_system()
|
|
t.expect_addition(["dist/a.a", "dist/a.h"])
|
|
|
|
t.cleanup()
|