Reputation: 1734
I'm having no luck running the Qt examples with Qt Creator. I've tried three so far, but I have been unable to build and run any of them. Each one gives a different message, so I don't have anything specific pinpointing me to the problem.
Here's one error message:
Starting C:\Qt\Examples\Qt-5.5\widgets\mainwindows\build-application-Desktop_Qt_5_5_1_MSVC2013_64bit-Debug\debug\application.exe... The program has unexpectedly finished. C:\Qt\Examples\Qt-5.5\widgets\mainwindows\build-application-Desktop_Qt_5_5_1_MSVC2013_64bit-Debug\debug\application.exe crashed
Another example: the imageprovider
example displays a dialog that says:
"Could not find the executable, please specify one."
Yet another example, the plugandpaint
says:
:-1: error: LNK1104: cannot open file 'pnp_basictoolsd.lib'
For the last one, I've attempted to load the basictools
example and set a dependency, but the message is unchanged.
Any hints on how to debug this?
Upvotes: 1
Views: 1131
Reputation: 5557
1) Needs more info
2) imageprovider
is a lib project, that's why you can't run it.
3) plugandpaint
is a part of the tools
project, it's not standalone. Open tools.pro
instead.
Upvotes: 1