Building QT Embedded Widgets on Windows 7
-
I installed Qt C:\Qt\2010.04 and I can build the example projects with Qt Creator.
I downloaded withe QT embedded widgets
C:\Projects\qt_embedded-widgets-1.1.0
And I cannot build.
In file included from ../../../embedded-widgets-1.1.0/src/basicgraph/qtbasicgraph.cpp:9:
../../../embedded-widgets-1.1.0/src/basicgraph/qtbasicgraph.h:13:17: error: QtGui: No such file or directory
../../../embedded-widgets-1.1.0/src/basicgraph/qtbasicgraph.cpp:10:25: error: QtCore/QDebug: No such file or directory
../../../embedded-widgets-1.1.0/src/basicgraph/qtbasicgraph.cpp:11:30: error: QStandardItemModel: No such file or directory
../../../embedded-widgets-1.1.0/src/basicgraph/qtbasicgraph.cpp:14:18: error: QDebug: No such file or directoryI have seen other people report this problem but have not seen a solution. Any help appreciated.
Rick
-
bq. Configuration unchanged, skipping qmake step.
This looks fishy, I suggest to manually run "qmake" again. The include pathes for Qt are missing, which seems to be the error.
Note that for pasting temporary things, you can use "pastebin":http://qt.pastebin.com
-
-
$$PWD is a qmake thing and is replaced with the current working dir.
You can try running "qmake -d -d -d -d" to get full debug output from qmake, maybe you see something fishy. In any case, the "-I" parameters for the Qt includes are missing, which I haven't seen happening before...
-
Well if anyone wants to take a look at this, I'm stumped. Here's verbose compiler output:
http://www.dominionsw.com/compileroutput.txt.zip
Anyone from Nokia Out There?
Thanks
Rick
-
Hi to all.
I've noticed that, if I lock the instructionDEPENDPATH += $$PWD
in the basicgraph.pri files, using a # instruction, it compiles well.
#DEPENDPATH += $$PWD // line modified
I don't know why (I'm studying it), but this instruction, ONLY IN PC ENVIRONMENT, resolves the compiling operation in an error.
This is to be made also in the multislider.pri file.