Cpp qt: simple

From wikinotes

The simplest possible build I could think of to test with.

src/main.cpp

#include <QtWidgets/QApplication>
#include <QtWidgets/QPushButton>

int main(int argc, char **argv)
{
    QApplication app(argc, argv);        
    QPushButton btn("Hello World!");
    btn.show();

    return app.exec();
}