summaryrefslogtreecommitdiffstats
path: root/Source/cmComputeLinkInformation.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2008-01-27 18:42:49 (GMT)
committerBrad King <brad.king@kitware.com>2008-01-27 18:42:49 (GMT)
commit99b97dece82ccfc940b60e3cdb01a0368464629f (patch)
tree7e73a624973a653f2b3b37dbe750ccf8c5428f02 /Source/cmComputeLinkInformation.h
parentc631aa2a872753e07d5fb27b5ad7f1d30749362f (diff)
downloadCMake-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.h2
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;