tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 19 Apr 2018 14:07:56 +0200
changeset 13338 0b12b0d0d12c
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix outdated Qt CMake dependency for OS X

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

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