2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-17 01:32:12 +00:00
Files
build/test/generators-test/Jamfile
Vladimir Prus c46c7fdae0 Prevent creating two equivivalent virtual targets. This, in particular,
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]
2002-09-13 12:19:42 +00:00

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 ;