mirror of
https://github.com/boostorg/build.git
synced 2026-02-17 01:32:12 +00:00
prevents complining the same source twice with the same properties.
Also allow generators to change source names using patterns.
* new/generators.jam (generator): Accept name patterns together with
target types.
(generator.generated-targets): Use name patterns. Transform generated
targets with 'virtual-targets.register', to eliminate duplicate
virtual targets.
[SVN r15302]
9 lines
216 B
Plaintext
9 lines
216 B
Plaintext
|
|
exe a : a.cpp b.cxx 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 lib/auxilliary ;
|
|
|
|
#exe a : a.cpp b.cpp c.ui d.wd x.l y.x_pro ;
|
|
|
|
nm_exe e : e.cpp ;
|