tools/drawMapTest/main.cpp
author koda
Tue, 18 Jun 2013 19:19:35 +0200
branchwebgl
changeset 9250 460b64e9b75c
parent 4425 2314bb0c433d
permissions -rw-r--r--
set pascal files as dependency of the target writing the c files so that it will run again if you modify them

#include <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}