diff options
author | Alex Neundorf <neundorf@kde.org> | 2011-02-05 18:09:54 (GMT) |
---|---|---|
committer | Alex Neundorf <neundorf@kde.org> | 2011-02-05 18:09:54 (GMT) |
commit | 4f96a7621fe57cd42dc659572eb2a31c84c65abd (patch) | |
tree | d5e1d959baf054a45ee1dae94937d1c5aacd8a93 /Source/cmGraphVizWriter.h | |
parent | 5698ad2047002529ff095fb9be2eb5c1d2f7a485 (diff) | |
download | CMake-4f96a7621fe57cd42dc659572eb2a31c84c65abd.zip CMake-4f96a7621fe57cd42dc659572eb2a31c84c65abd.tar.gz CMake-4f96a7621fe57cd42dc659572eb2a31c84c65abd.tar.bz2 |
GRAPHVIZ_IGNORE_TARGETS is now a list of regular expressions
This is similar e.g. to CTEST_CUSTOM_WARNING_EXCEPTION from ctest.
GRAPHVIZ_TARGET_IGNORE_REGEX is not supported anymore.
I hope this is ok, since this was 100% undocumented and can't
break a build.
Alex
Diffstat (limited to 'Source/cmGraphVizWriter.h')
-rw-r--r-- | Source/cmGraphVizWriter.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/cmGraphVizWriter.h b/Source/cmGraphVizWriter.h index cfe4e36..cd7a627 100644 --- a/Source/cmGraphVizWriter.h +++ b/Source/cmGraphVizWriter.h @@ -69,9 +69,7 @@ protected: bool GenerateForModuleLibs; bool GenerateForExternals; - cmsys::RegularExpression TargetIgnoreRegex; - - std::set<cmStdString> TargetsToIgnore; + std::vector<cmsys::RegularExpression> TargetsToIgnoreRegex; const std::vector<cmLocalGenerator*>& LocalGenerators; |