tools/drawMapTest/main.cpp
author koda
Tue, 25 Sep 2012 01:02:21 +0200
changeset 7705 15f5d3cd35c6
parent 4425 2314bb0c433d
permissions -rw-r--r--
force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting

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

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