tools/drawMapTest/main.cpp
author Vittorio Giovara <vittorio.giovara@gmail.com>
Wed, 11 Nov 2015 18:40:52 +0100
changeset 11371 78156dc2cab3
parent 4425 2314bb0c433d
permissions -rw-r--r--
cmake: Set OLD for policy 26 We need to get target location because of our bundled dependencies.

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

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