1
0
mirror of https://github.com/strawberrymusicplayer/strawberry synced 2025-01-23 14:11:55 +01:00

WorkerPool: Search for tagreader in libexec

This commit is contained in:
Jonas Kvinge 2022-07-17 17:21:11 +02:00
parent c5876d0d48
commit 57b056ac43

View File

@ -243,6 +243,10 @@ void WorkerPool<HandlerType>::DoStart() {
QStringList search_path;
search_path << QCoreApplication::applicationDirPath();
#if defined(Q_OS_UNIX)
search_path << "/usr/libexec";
search_path << "/usr/local/libexec";
#endif
#if defined(Q_OS_MACOS) && defined(USE_BUNDLE)
search_path << QCoreApplication::applicationDirPath() + "/" + USE_BUNDLE_DIR;
#endif