Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
TEMPLATE      = app
SOURCES       = terve.cpp

Projektitiedostossa kerrotaan, että kyseessä on sovellus elio käytetään mallia app ja mukaan otettavat tiedostot, nyt terve.cpp

Code Block

#include <QApplication>
#include <QLabel>

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    QLabel *label = new QLabel("Terve, eka Qt-sovellus!");
    label->show();
    return app.exec();
}