Skip to content
Snippets Groups Projects
Commit 60b5616a authored by Brad King's avatar Brad King Committed by Kitware Robot
Browse files

Merge topic 'command-cleanup-fix'

20ae76b1 cmDisallowedCommand: Forward final pass too
parents aa18d5be 20ae76b1
No related branches found
No related tags found
No related merge requests found
......@@ -34,6 +34,13 @@ public:
bool InitialPass(std::vector<std::string> const& args,
cmExecutionStatus& status) CM_OVERRIDE;
void FinalPass() CM_OVERRIDE { this->Command->FinalPass(); }
bool HasFinalPass() const CM_OVERRIDE
{
return this->Command->HasFinalPass();
}
bool IsScriptable() const CM_OVERRIDE
{
return this->Command->IsScriptable();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment