| 247 | } |
| 248 | |
| 249 | KDevelop::Path commandsFile(KDevelop::IProject* project) |
| 250 | { |
| 251 | auto currentBuildDir = CMake::currentBuildDir(project); |
| 252 | if (currentBuildDir.isEmpty()) { |
| 253 | return {}; |
| 254 | } |
| 255 | |
| 256 | return KDevelop::Path(currentBuildDir, QStringLiteral("compile_commands.json")); |
| 257 | } |
| 258 | |
| 259 | KDevelop::Path targetDirectoriesFile(KDevelop::IProject* project) |
| 260 | { |
no test coverage detected