2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-01 20:32:17 +00:00
Files
build/test/direct-request-test/Jamfile
Vladimir Prus 455019d5dc Propagate free properties in build request to all directly requested targets.
* targets.jam
        (abstract-target.direct-build-request): New rule.
        (project-target.direct-build-request): New rule.
        (main-target.direct-build-request): New rule.
        (main-target.generate): Use data stored by
        'direct-build-request' to adjust build properties.

    * build-system.jam: Call 'direct-build-request' on project
         target in "."

    * feature.jam (feature): Don't allow propagated free features.


[SVN r15677]
2002-10-03 15:18:59 +00:00

9 lines
257 B
Plaintext

# This will link correctly only if symbol MACROS is defined when compiling
# b.cpp. However, this is only possible if that symbol is requested
# on command line and b.cpp is compiled with directly requested
# properties.
exe a : a.cpp b ;
lib b : b.cpp ;