So when I create a new Qt project inside Qt Creator I\'m only asked for some simple details like location of the project, build targets, the main window class name (along wi
Edit your .pro file. It should has one line like this:
QT += core gui
Append the desired modules in this line. To get the module's names, just remove the "Qt" part in this list. (e.g. QtSql turns "sql")