diff options
author | Brad King <brad.king@kitware.com> | 2008-01-27 18:42:49 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-01-27 18:42:49 (GMT) |
commit | 99b97dece82ccfc940b60e3cdb01a0368464629f (patch) | |
tree | 7e73a624973a653f2b3b37dbe750ccf8c5428f02 /Source/cmComputeLinkInformation.h | |
parent | c631aa2a872753e07d5fb27b5ad7f1d30749362f (diff) | |
download | CMake-99b97dece82ccfc940b60e3cdb01a0368464629f.zip CMake-99b97dece82ccfc940b60e3cdb01a0368464629f.tar.gz CMake-99b97dece82ccfc940b60e3cdb01a0368464629f.tar.bz2 |
ENH: Created cmComputeLinkDepends to compute link dependencies.
- This will be useful for imported library dependencies
- Replaces old cmTarget analyze-lib-depends stuff for linking
- Formalizes graph construction and dump
- Explicitly represents dependency inferral sets
- Use BFS of initial dependencies to preserve order
Diffstat (limited to 'Source/cmComputeLinkInformation.h')
-rw-r--r-- | Source/cmComputeLinkInformation.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmComputeLinkInformation.h b/Source/cmComputeLinkInformation.h index 65a870a..993ad0f 100644 --- a/Source/cmComputeLinkInformation.h +++ b/Source/cmComputeLinkInformation.h @@ -51,7 +51,7 @@ public: const char* GetLinkLanguage() const { return this->LinkLanguage; } std::vector<std::string> const& GetRuntimeSearchPath(); private: - void AddItem(std::string const& item); + void AddItem(std::string const& item, cmTarget* tgt); // Output information. ItemVector Items; |