| 781 | } |
| 782 | |
| 783 | void CMakeManager::reloadProjects() |
| 784 | { |
| 785 | const auto& projects = ICore::self()->projectController()->projects(); |
| 786 | for (IProject* project : projects) { |
| 787 | if (project->buildSystemManager() == this) { |
| 788 | CMake::checkForNeedingConfigure(project); |
| 789 | reload(project->projectItem()); |
| 790 | } |
| 791 | } |
| 792 | } |
| 793 | |
| 794 | CMakeTarget CMakeManager::targetInformation(KDevelop::ProjectTargetItem* item) const |
| 795 | { |
nothing calls this directly
no test coverage detected