view src/qt-test.cpp @ 684:6ab8ff5ab4f6

use the autotools for package popt
author Volker Grabsch <vog@notjusthosting.com>
date Fri, 05 Feb 2010 03:06:08 +0100
parents f77810598227
children 29f1ba4559ae
line wrap: on
line source

/* This file is part of mingw-cross-env.                     */
/* See doc/index.html or doc/README for further information. */

#include <QtGui/QApplication>
#include "ui_qt-test.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    QMainWindow w;
    Ui::MainWindow u;
    u.setupUi(&w);
    w.show();
    return a.exec();
}