tools/templates/main.cpp
author koda
Fri, 22 Feb 2013 06:38:46 +0100
branchphysfslayer
changeset 8526 9f2bd885d773
parent 359 59fbfc65fbda
permissions -rw-r--r--
update cmake files to use the two libraries independently

#include <QApplication>

#include "mainform.h"

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