| 65 | } |
| 66 | |
| 67 | QString probePath(const QString &probeABI, const QString &rootPath) |
| 68 | { |
| 69 | #ifndef GAMMARAY_INSTALL_QT_LAYOUT |
| 70 | return rootPath + QDir::separator() |
| 71 | + QLatin1String(GAMMARAY_PLUGIN_INSTALL_DIR) + QDir::separator() |
| 72 | + QLatin1String(GAMMARAY_PLUGIN_VERSION) + QDir::separator() |
| 73 | + probeABI; |
| 74 | #else |
| 75 | Q_UNUSED(probeABI); |
| 76 | return rootPath + QDir::separator() + QLatin1String(GAMMARAY_PROBE_INSTALL_DIR); |
| 77 | #endif |
| 78 | } |
| 79 | |
| 80 | QString binPath() |
| 81 | { |
no outgoing calls