how to get a configure script to find a static Qt plugin
Unsolved
Installation and Deployment
-
I have a built qt5 with static libraries on Ubuntu. It appeared to have built fine, I installed in /opt/qt5/.
Now using a configure script for an app and it does all the checks. It finds QT5, it finds the static QT. But then it does 'checking for static Qt plugins: -lqminimal... no'
/opt/qt5/plugins/platforms/libqminimal.a does exist
I tried exporting a few things without any luck
QT_PLUGIN_PATH=/opt/qt5/plugins/platforms
PKG_CONFIG_PATH="/opt/qt5/lib/pkgconfigI tried running configure with
LDFLAGS="-L/opt/qt5/plugins/platforms"I feel like I'm missing something simple here. Any suggestions?