| 1721 | } |
| 1722 | |
| 1723 | void Application::detectLibraries() |
| 1724 | { |
| 1725 | #ifdef Q_OS_LINUX |
| 1726 | m_detectedGLFWPath = MangoHud::findLibrary(BuildConfig.GLFW_LIBRARY_NAME); |
| 1727 | m_detectedOpenALPath = MangoHud::findLibrary(BuildConfig.OPENAL_LIBRARY_NAME); |
| 1728 | qDebug() << "Detected native libraries:" << m_detectedGLFWPath << m_detectedOpenALPath; |
| 1729 | #endif |
| 1730 | } |
| 1731 | |
| 1732 | QString Application::getJarPath(QString jarFile) |
| 1733 | { |
nothing calls this directly
no test coverage detected