Qt creator Run settings Executable error
I am trying to setup MuseScore development in Qt creator using the method 2.
Every configuration in build section can be done but when I set the "Executable:" in run settings to "build.debug/install/bin/mscore-qt", it gives me an error saying the path doesnt exist. (See the screenshot below)
Any help would be much appreciated.
Thanks.
Attachment | Size |
---|---|
Screenshot from 2018-01-08 20-06-45.png | 197.31 KB |
Comments
why the
-qt
?What about the
make install
step?In reply to why the -qt? by Jojo-Schmitz
I took that command from this page.
https://musescore.org/en/handbook/compile-instructions-linux-bsd-git#Qt…
Honestly I'm new to Qt and C++ development so I have no idea about what this commands means. So please be gentle with me.
In reply to I took that command from… by Kavindu Chamiran
Ah, I see, SUFFIX is set to that '-qt'
Have you performed a successful build yet? The executable indeed only start to exist after it has been compiled, so yes, at first this will point to an unknown file.
In reply to Have you performed a… by jeetee
No I didnt try to build it yet. I will give it a try.
Thanks.
In reply to No I didnt try to build it… by Kavindu Chamiran
That certainly explains it
That fixed the issue. Thanks.