Reputation: 14081
Windows 7: I have installed Qt 4.8.4 Win and Qt Creator 2.6.2 Win, VS2010 (from here). When I try to open a project (previously compiled with Qt 4.8.3 / Creator 2.5.2), it says I need a kit (no valid kit
) and eventually I end up at Qt version is not properly installed
. All is shown in the screenshots below.
I have checked some solutions:
qmake
dir?make install
, nothing happens.Qt version is not properly installed
Any idea what I would need to do or install.
-- Edit -- List of trials ---
qmake
dir to PATH
qmake install
(as in the suggestions): 4.8.4\install:1: Parse Error ('INSTALLING Qt Source Package Version 4.8.4.') Error processing project file: install
qmake install
from Qt CMD. Runs 20 minutes, Laptop gets extremly hot, then it crashesP:\Qt\Libs\4.8.4>qmake\qmake.exe install
QMAKESPEC has not been set, so configuration cannot be deduced.
Error processing project file: install
Upvotes: 3
Views: 12457
Reputation: 51
I had the same problem. Try to choose "qmake.exe" from the BIN folder, not the qmake folder, so in your case probably P:\Qt\Libs\4.8.4\bin\qmake.exe
Upvotes: 5
Reputation: 14081
Based on SO: How to install Qt on Windows after building? I eventually got to http://qt-project.org/doc/qt-4.8/install-win.html
Simply running configure
solved it for me, I did not build, nothing else. The installer did apply several patches, so I still do not get why I have to run configure.
Upvotes: 1