| 660 | } |
| 661 | |
| 662 | void CMakeManager::showConfigureOutdatedMessage(const KDevelop::IProject& project) |
| 663 | { |
| 664 | const QString messageText = i18n( |
| 665 | "Configured project '%1' with outdated CMake data." |
| 666 | " As a result, KDevelop's code understanding may be wrong.\n" |
| 667 | "\n" |
| 668 | "To fix this issue, please right-click the project item in the projects tool view and click 'Reload'.", |
| 669 | project.name()); |
| 670 | showConfigureStatusMessage(project, messageText, Sublime::Message::Warning); |
| 671 | } |
| 672 | |
| 673 | void CMakeManager::showConfigureErrorMessage(const IProject& project, const QString& errorMessage) |
| 674 | { |