tools/drawMapTest/main.cpp
author koda
Tue, 19 Mar 2013 00:30:30 +0100
branchcmake_pascal
changeset 8764 f16bcb3dba9e
parent 4425 2314bb0c433d
permissions -rw-r--r--
the default CMake(Lang)Compiler.cmake location changed since 2.8.10

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

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