mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-03 11:54:30 -04:00
Make Plugin working in Mac OSX.
This commit is contained in:
parent
b6b5f9cd17
commit
c5e6f62382
5 changed files with 10 additions and 6 deletions
|
@ -69,8 +69,10 @@ PluginManager::defaultLoad( )
|
|||
|
||||
//=== get current available plugins =====
|
||||
QStringList currAvailable = workDir.entryList(QDir::Files);
|
||||
#if defined(Q_OS_WIN)
|
||||
#if defined(Q_OS_WIN)
|
||||
QRegExp trx("*.dll") ;
|
||||
#elif defined(__MACH__)
|
||||
QRegExp trx("*.dylib");
|
||||
#else
|
||||
QRegExp trx("*.so");
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue