| 257 | } |
| 258 | |
| 259 | KDevelop::Path targetDirectoriesFile(KDevelop::IProject* project) |
| 260 | { |
| 261 | auto currentBuildDir = CMake::currentBuildDir(project); |
| 262 | if (currentBuildDir.isEmpty()) { |
| 263 | return {}; |
| 264 | } |
| 265 | |
| 266 | return KDevelop::Path(currentBuildDir, QStringLiteral("CMakeFiles/TargetDirectories.txt")); |
| 267 | } |
| 268 | |
| 269 | QString currentBuildType( KDevelop::IProject* project, int builddir ) |
| 270 | { |
no test coverage detected