Complete newbie: Getting 'make' is not recognized as an internal or external command, operable program or batch file.
-
As far as I know, the SDK is installed together with MinGW. You can either start that from the mingw shell, or - better - use Qt Creator. Just launch Qt Creator (it should have been installed together with the SDK) and open the generated .pro file. You should be able to build the sample then.
-
-
I am using the mingw desktop that automatically sets the path when you use it. I checked the path and it included both mingw/bin folder and the Desktop\Qt\4.7.3\mingw\bin. All the tutorials, including those on the QT website say use make (or maybe nmake on windows). I understood that QT included a make.bat file to launch mingw-make.
I'll try mingw-make.
Thanks for all the quick replies. Awesome.
-
Nice! Now good luck with the other examples and have fun using Qt :-)
And of course, you're welcome to ask here if you have further questions. And don't miss the good documentation on http://developer.qt.nokia.com/doc/qt-4.7/ :)
-
OK - I've now solved this!
It seems that -QT- Qt used to have a make.bat file to call mingw32-make but now no longer includes this for some reason. A number of places on the web - forums and stackoverflow etc - have a discussion of this and the answer is to create your own batch file and put it in the mingw\bin folder, with the following command;
@echo off
mingw32-make %*Hopefully this may help other newbies, especially as every beginner tutorial and book seems to start on the command line and assumes that make will work!!