Qt5 dependencies in Nightlybuild for linux
Hi,
when running the nightly on windows, all the dependencies are bundled with the installer. However on linux they arent and some plugins which are relying on qml wont work. Can I do anything to get musescore to acknowledge the qt5.1 build i have installed on my machine?
Comments
Edit your Makefile and change the given Qt5 path.
That's what worked for me at least.
In reply to You'll have to add Qt5's by jschwalm
Or run make with an extra option
make BINPATH="/your/path/to/qt:${PATH}"
Snippet from makefile:
#
# change path to include your Qt5 installation
#
BINPATH = ${HOME}/Qt5.2.0/5.2.0-rc1/gcc_64/bin:${PATH}
In reply to Or run make with an extra by Jojo-Schmitz
It worked! great...