#include <qapplication.h>
#include <qlabel.h>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QLabel *label = new QLabel("Hello, Qt!", 0);
app.setMainWidget(label);
label->show();
return app.exec();
}#qmake -project
#qmake hello.pro
QMAKESPEC has not been set, so configuration cannot be deduced.
Error processing project file : /c++/hello/hello.proКак понимаю не настроен QMAKESPEC, что это? и как его настроить?
>[оверквотинг удален]
> label->show();
> return app.exec();
> }
>
>#qmake -project
>#qmake hello.pro
>QMAKESPEC has not been set, so configuration cannot be deduced.
>Error processing project file : /c++/hello/hello.pro
>
>Как понимаю не настроен QMAKESPEC, что это? и как его настроить?