| 459 | } |
| 460 | |
| 461 | cmake::CommandFailureAction cmake::GetCommandFailureAction() const |
| 462 | { |
| 463 | switch (this->State->GetRole()) { |
| 464 | case cmState::Role::Project: |
| 465 | case cmState::Role::CTest: |
| 466 | return CommandFailureAction::EXIT_CODE; |
| 467 | default: |
| 468 | return CommandFailureAction::FATAL_ERROR; |
| 469 | } |
| 470 | } |
| 471 | |
| 472 | void cmake::CleanupCommandsAndMacros() |
| 473 | { |