tools/drawMapTest/main.cpp
author koda
Wed, 10 Jan 2018 01:14:13 +0100
branch0.9.23
changeset 12887 62f7d28e93e3
parent 4425 2314bb0c433d
permissions -rw-r--r--
Set cmake RPATH policy to OLD

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

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