diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-03-03 19:24:31 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-03-03 19:24:31 (GMT) |
commit | bc4e5581ee62d0826625bf1344c3bad7f8711dbc (patch) | |
tree | dfd717c95e59bbac822e81cbadece640123069a2 /Source/cmTarget.h | |
parent | 93c95f1cc5207d043b4bfaa617a611d1dffc7016 (diff) | |
download | CMake-bc4e5581ee62d0826625bf1344c3bad7f8711dbc.zip CMake-bc4e5581ee62d0826625bf1344c3bad7f8711dbc.tar.gz CMake-bc4e5581ee62d0826625bf1344c3bad7f8711dbc.tar.bz2 |
ENH: Add support for exporting graphviz of the project dependencies
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index a605a35..9990cdd 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -95,6 +95,7 @@ public: enum LinkLibraryType {GENERAL, DEBUG, OPTIMIZED}; typedef std::vector<std::pair<std::string,LinkLibraryType> > LinkLibraries; const LinkLibraries &GetLinkLibraries() {return m_LinkLibraries;} + const LinkLibraries &GetOriginalLinkLibraries() {return m_OriginalLinkLibraries;} /** * Clear the dependency information recorded for this target, if any. @@ -321,6 +322,7 @@ private: std::vector<cmSourceFile*> m_SourceFiles; LinkLibraries m_LinkLibraries; LinkLibraries m_PrevLinkedLibraries; + LinkLibraries m_OriginalLinkLibraries; bool m_LinkLibrariesAnalyzed; bool m_LinkDirectoriesComputed; std::vector<std::string> m_Frameworks; |