How to prevent Eclipse creates nmake file instead of make?
In order to develop qt application on eclipse, i have installed mingw, qt and qt eclipse integration. When i try to build the project, it search nmake for building project and syntax of my make file is nmake syntax.
And i thought there were some special eclipse settings but i could'nt find a开发者_Python百科nything about it.
How can i make eclipse produce make file instead of nmake
Any help will be appreciated.
It is because of Qt version. Nmake is special for Visual Studio integrated Qt. So If your eclipse create nmake file instead of make file. Your eclipse show wrong version of Qt.
If you don't want to get this error. You should firstly check:
- Check you download true eclipse version. The Qt version which
- eclipse is using is correct
- Check QT_DIR in your enviroment variable show correct path.
精彩评论