mirror of
https://github.com/boostorg/build.git
synced 2026-02-17 01:32:12 +00:00
* boost_build_v2.html: Document new option. * new/generators.jam (find-viable-generators): Revert part of Dave's commit, essentially disabling finding base type generators. This part breaks a test, and need to be thinked about. * new/errors.jam: Handle "--no-error-backtrace" option. * test/project_test4.py: Adjust for new error syntax. [SVN r16233]
10 lines
273 B
Plaintext
10 lines
273 B
Plaintext
|
|
exe a : a.cpp b.cxx obj_1 obj_2 c.ui d.wd x.l y.x_pro lib/auxilliary ;
|
|
# This should not cause second compilation of a.cpp
|
|
exe f : a.cpp b.cxx obj_1 obj_2 lib/auxilliary ;
|
|
|
|
obj obj_1 : z.cpp : <define>SELECT=1 ;
|
|
obj obj_2 : z.cpp : <define>SELECT=2 ;
|
|
|
|
nm-exe e : e.cpp ;
|