为什么吧那个hello的代码打进去无法build
详细见附件

p.s. xcode 3.1.2 QT 4.5.2(32bit)
那一段代码就是书上的
#include <QApplication>
#include<QLabel>
int main(int argc, char *argv[])
{
QApplication app(argc,argv);
QLabel *label = new QLabel("Hello Qt!");
label->show();
return app.exec();
}