| 78 | } |
| 79 | |
| 80 | RunCommandInfo LLGenerator::getRunArguments(const ProjectInfo &projectInfo, const QString ¤tFile) |
| 81 | { |
| 82 | Q_UNUSED(currentFile) |
| 83 | RunCommandInfo info; |
| 84 | info.program = "ll-builder"; |
| 85 | info.arguments.append("run"); |
| 86 | info.workingDir = projectInfo.workspaceFolder(); |
| 87 | info.runInTerminal = false; |
| 88 | |
| 89 | return info; |
| 90 | } |
no test coverage detected