diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-07-23 21:00:28 (GMT) |
---|---|---|
committer | Regina Pfeifer <regina@mailbox.org> | 2019-07-30 15:21:50 (GMT) |
commit | c76500949d3fcf5ff83ac6e7f1d565f5d786c5f0 (patch) | |
tree | 4a42eb66c6ea5c4b5b51919e015d198da427a3a4 /Source/cmMacroCommand.cxx | |
parent | 89dc04af1d55a343a44e7c2de4bb92a101dd6138 (diff) | |
download | CMake-c76500949d3fcf5ff83ac6e7f1d565f5d786c5f0.zip CMake-c76500949d3fcf5ff83ac6e7f1d565f5d786c5f0.tar.gz CMake-c76500949d3fcf5ff83ac6e7f1d565f5d786c5f0.tar.bz2 |
cm*FunctionBlocker: Move to source file
Diffstat (limited to 'Source/cmMacroCommand.cxx')
-rw-r--r-- | Source/cmMacroCommand.cxx | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Source/cmMacroCommand.cxx b/Source/cmMacroCommand.cxx index 1f2b5b2..a123f22 100644 --- a/Source/cmMacroCommand.cxx +++ b/Source/cmMacroCommand.cxx @@ -10,6 +10,8 @@ #include "cmAlgorithms.h" #include "cmExecutionStatus.h" +#include "cmFunctionBlocker.h" +#include "cmListFileCache.h" #include "cmMakefile.h" #include "cmPolicies.h" #include "cmRange.h" @@ -136,6 +138,18 @@ bool cmMacroHelperCommand::operator()( return true; } +class cmMacroFunctionBlocker : public cmFunctionBlocker +{ +public: + bool IsFunctionBlocked(const cmListFileFunction&, cmMakefile& mf, + cmExecutionStatus&) override; + bool ShouldRemove(const cmListFileFunction&, cmMakefile& mf) override; + + std::vector<std::string> Args; + std::vector<cmListFileFunction> Functions; + int Depth = 0; +}; + bool cmMacroFunctionBlocker::IsFunctionBlocked(const cmListFileFunction& lff, cmMakefile& mf, cmExecutionStatus&) |