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/cmake.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/cmake.h')
-rw-r--r-- | Source/cmake.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmake.h b/Source/cmake.h index e74b885..8c4eaaf 100644 --- a/Source/cmake.h +++ b/Source/cmake.h @@ -311,6 +311,8 @@ protected: //! Make sure all commands are what they say they are and there is no macros. void CleanupCommandsAndMacros(); + + void GenerateGraphViz(const char* fileName); cmVariableWatch* m_VariableWatch; @@ -329,6 +331,7 @@ private: bool m_ClearBuildSystem; bool m_DebugTryCompile; cmFileTimeComparison* m_FileComparison; + std::string m_GraphVizFile; void UpdateConversionPathTable(); }; |