tools/templates/main.cpp
author koda
Sat, 24 Aug 2013 13:33:34 +0200
changeset 9419 fa8324ed4702
parent 359 59fbfc65fbda
permissions -rw-r--r--
avoid duplicate pkg-config calls and make sure to use the pkg-config paths when found

#include <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}