Suppose I create new project in Qt Creator by Non-Qt Project->Plain C++ Project.
Unfortunately makefile generated by editor has ~20KB garbages I don't need for my simple 'Hello World' like *.pri files and compiler_yacc_decl_* rules.
I guess there is some file in Tools/QtCreator/share/qtcreator/templates/wizards that should be modified but I couldn't grep that. Removing those lines:
include(deployment.pri)
qtcAddDeployment()
from Tools/QtCreator/share/qtcreator/templates/wizards/plaincppapp/qmake/project.pro
did't help.
Is it possible to force Qt Creator to not generating so big makefiles for new projects?