diff options
author | Alex Neundorf <neundorf@kde.org> | 2011-02-05 17:43:34 (GMT) |
---|---|---|
committer | Alex Neundorf <neundorf@kde.org> | 2011-02-05 17:43:34 (GMT) |
commit | 5698ad2047002529ff095fb9be2eb5c1d2f7a485 (patch) | |
tree | 804016afdc1d674b7da278165e4ea1d417d9ebdb /Source/cmGraphVizWriter.h | |
parent | 00e7ea76e83153db1f95289a4b101b3031c97b99 (diff) | |
download | CMake-5698ad2047002529ff095fb9be2eb5c1d2f7a485.zip CMake-5698ad2047002529ff095fb9be2eb5c1d2f7a485.tar.gz CMake-5698ad2047002529ff095fb9be2eb5c1d2f7a485.tar.bz2 |
Make it possible to exlude external libs from dot files
Patch from Christian Ehrlicher.
By setting GRAPHVIZ_EXTERNAL_LIBS to TRUE in CMakeGraphVizOptions.cmake
you can now exclude external libraries from the produced dot file.
I.e. then you see only the dependencies within your project.
Alex
Diffstat (limited to 'Source/cmGraphVizWriter.h')
-rw-r--r-- | Source/cmGraphVizWriter.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmGraphVizWriter.h b/Source/cmGraphVizWriter.h index 105eb96..cfe4e36 100644 --- a/Source/cmGraphVizWriter.h +++ b/Source/cmGraphVizWriter.h @@ -67,6 +67,7 @@ protected: bool GenerateForStaticLibs; bool GenerateForSharedLibs; bool GenerateForModuleLibs; + bool GenerateForExternals; cmsys::RegularExpression TargetIgnoreRegex; |