diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-02-13 17:27:31 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-02-24 15:43:24 (GMT) |
commit | 5771f81d91d232a143345dc05835323f36ab7ecc (patch) | |
tree | b42ef238e0fd8ac1fb96580cad19fbb5c896b9ab /Source/cmTarget.h | |
parent | a6dd4990dbfa1afadbaeea33250e52affa5e00d9 (diff) | |
download | CMake-5771f81d91d232a143345dc05835323f36ab7ecc.zip CMake-5771f81d91d232a143345dc05835323f36ab7ecc.tar.gz CMake-5771f81d91d232a143345dc05835323f36ab7ecc.tar.bz2 |
cmTarget: Add GetTransitiveTargetClosure method.
Replace calls to GetLinkInformation with calls to a method to get only
the target closure, not the link languages etc. The replaced calls
are used while evaluating generator expressions only. This makes
transitive generator expression evaluation independent from
the languages of a target. In a follow-up topic, it will be possible
to make the languages depend on generator expression evaluation, via
evaluation of the SOURCES and INTERFACE_SOURCES target properties.
Because the order of entries is not the same as the final link line,
the order of debug output is different in the RunCMake.CompatibleInterface
test, because the BOOL_PROP7 target property is evaluated first. Adjust
the test to account for that new order.
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index f3cd874..5dec9e2 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -269,6 +269,9 @@ public: void GetTransitivePropertyTargets(const char* config, cmTarget const* headTarget, std::vector<cmTarget*> &libs) const; + void GetTransitiveTargetClosure(const char* config, + cmTarget const* headTarget, + std::vector<cmTarget*> &libs) const; /** The link implementation specifies the direct library dependencies needed by the object files of the target. */ |