yet another MSVS 2005 express question
Hi,
ok, I gave in, and I am trying the Qt integration with MSVS 2005 Express.
Followed all the good advice here.
I created a makfile based project with msvs with two classes and a main.
I then ran qmake -project which generated a correct looking pro file.
Then I run qmake -tp vc, and got the following error:
Quote:
Could not find mkspecs for your QMAKESPEC(win32-msvc2005 ) after trying:
C:\Qt\4.3.2\mkspecs
Error processing project file: C:/Dokumente und Einstellungen/dkish/Eigene Dateien/Visual Studio 2005/Projects/deleteme/deleteme/deleteme.pro
However I do have win32-msvc2005 folder under C:\Qt\4.3.2\mkspecs, and it has a conf and a header file that looks ok.
Any idea what I could have been doing wrong?
Thanks.
Re: yet another MSVS 2005 express question
Hmm.... doing:
Quote:
qmake -spec win32-msvc2005 deleteme.pro
Works...:confused:
Any idea why my QMAKESPEC doesn't work ?
Re: yet another MSVS 2005 express question
What does echo %QMAKESPEC% return?
Re: yet another MSVS 2005 express question
It returns the right mkspec:
Quote:
C:\Dokumente und Einstellungen\dkish\Eigene Dateien\Visual Studio 2005\Projects\deleteme\deleteme>echo %QMAKESPEC%
win32-msvc2005
Re: yet another MSVS 2005 express question
Just a wild guess but is there maybe a space behind the mkspec:
Quote:
QMAKESPEC(win32-msvc2005 )
?
Re: yet another MSVS 2005 express question
Pah.... heh... who would've thought...:rolleyes:
THANKS!