diff options
author | Alex Neundorf <neundorf@kde.org> | 2010-11-14 19:47:28 +0100 |
---|---|---|
committer | Alex Neundorf <neundorf@kde.org> | 2010-11-14 19:47:28 +0100 |
commit | 78c86f454272a2ac417ad6a89e4c7ed7e4975adb (patch) | |
tree | cc1792b361a1d1c6f3a75c0e0b8d4a81e804d4f7 /Source/cmGraphVizWriter.h | |
parent | 5ea1e4cb36d813bcb1377637779a54f18411763b (diff) | |
download | cmake-78c86f454272a2ac417ad6a89e4c7ed7e4975adb.tar.gz |
Exclude targets from the graphviz file based on a regex
This commit adds support for a GRAPHVIZ_TARGET_IGNORE_REGEX variable
which can be set() in CMakeGraphVizOptions.cmake.
Targets matching this regex will be skipped when generating the graphviz
graphs.
Alex
Diffstat (limited to 'Source/cmGraphVizWriter.h')
-rw-r--r-- | Source/cmGraphVizWriter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGraphVizWriter.h b/Source/cmGraphVizWriter.h index 88842a6f0c..105eb9635a 100644 --- a/Source/cmGraphVizWriter.h +++ b/Source/cmGraphVizWriter.h @@ -54,7 +54,7 @@ protected: void WriteFooter(cmGeneratedFileStream& str) const; - bool IgnoreThisTarget(const char* name) const; + bool IgnoreThisTarget(const char* name); bool GenerateForTargetType(cmTarget::TargetType targetType) const; |