Kann mir mal einer sagen für welche IDE QT normalerweise
vorgesehen war?
Ansonsten:
Wie kann ich am leichtesten das hier compilieren:
#include <QApplication>
#include <QPushButton>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QPushButton hello("Hello world!");
hello.resize(100, 30);
hello.show();
return app.exec();
}
DANKE!