Reputation: 17006
I have downloaded Qt for Visual Studio 2008 for Windows 4.8.1.
I have run configure.exe
from the command prompt.
But I can not find nmake.exe or make.exe anywhere in my "C:\QT\4.8.1" - directory.
Therefore, I am unable to use Qt with Visual Studio 2008.
What to do now?
Upvotes: 1
Views: 1374
Reputation: 17006
Okay. Finally, I found my solution.
Step (1). Download and Install QT for Visual Studio 2008 4.8.1.
Step (2). Download and Install QT Visual Studio Addin 1.1.10.
Nothing else is needed at all.
Now I am able to Create, Compile and Run my "Hello World"- QT application straightaway.
Upvotes: 2
Reputation: 5067
You could use QT Creator as your IDE instead. I found getting it up and running is fairly issue-free.
Upvotes: 0
Reputation: 206859
nmake
is the make that comes with Visual Studio.
You should have run whatever instructions you're following from a Visual Studio command line prompt, which contains all the right PATH settings for using nmake
and cl
on the command line.
Upvotes: 4