| 233 | } |
| 234 | |
| 235 | KDevelop::Path projectRoot(KDevelop::IProject* project) |
| 236 | { |
| 237 | if (!project) { |
| 238 | return {}; |
| 239 | } |
| 240 | |
| 241 | return project->path().cd(CMake::projectRootRelative(project)); |
| 242 | } |
| 243 | |
| 244 | KDevelop::Path currentBuildDir( KDevelop::IProject* project, int builddir ) |
| 245 | { |
no test coverage detected