rodlie / qtfm

Qt File Manager
https://qtfm.eu
GNU General Public License v2.0
156 stars 43 forks source link

missing getFilename in -lQtFM #94

Closed kaarrot closed 5 years ago

kaarrot commented 5 years ago

Looks like dynamic linking against -lQtFM is giving me the error (getFilename symbol is missing?) undefined reference tomyProgressDialog::getFilename()'`

To workaround it I had to change in fm.pro: from: LIBS += -L../libfm -lQtFM to: LIBS += -L../libfm ../libfm/libQtFM.a

Any ideas why this is happening?

rodlie commented 5 years ago

dynamic is forced when in debug mode and static is forced in release mode.