Qt installation error

I got an error while trying to configure Qt.

Erro : execute: File or path is not found (nmake) execute: File or path is not found (nmake) Cleaning qmake failed, return code -1 // installion files. InterBase...............no Sources are in..............E:\xampp\Qt\4.6 Build is done in............E:\xampp\Qt\4.6 Install prefix..............E:\xampp\Qt\4.6 Headers installed to........E:\xampp\Qt\4.6\include Libraries installed to......E:\xampp\Qt\4.6\lib Plugins installed to........E:\xampp\Qt\4.6\plugins Binaries installed to.......E:\xampp\Qt\4.6\bin Docs installed to...........E:\xampp\Qt\4.6\doc Data installed to...........E:\xampp\Qt\4.6 Translations installed to...E:\xampp\Qt\4.6\translations Examples installed to.......E:\xampp\Qt\4.6\examples Demos installed to..........E:\xampp\Qt\4.6\demos Creating qmake... execute: File or path is not found (nmake) execute: File or path is not found (nmake) Cleaning qmake failed, return code -1 E:\xampp\Qt\4.6> 
+6
c ++ qt qt4 qt-creator
source share
3 answers

If you are trying to create Qt with Visual Studio, you must ensure that nmake and cl are in PATH .

The easiest way to do this is to simply use the Visual Studio command prompt (found, for example, on the Start menu).

+8
source share

You need to change your path so that it leads to where nmake is.

0
source share

Try adding the "-make nmake" flag to the configure command.

0
source share

All Articles