tools/templates/main.cpp
author Xeli
Thu, 23 Jun 2011 14:12:11 +0200
branchhedgeroid
changeset 5314 09bcdcd78379
parent 359 59fbfc65fbda
permissions -rw-r--r--
Have make move the actual libhwengine.so to the SDL-android-project folder, rather than having the ndk-build reference to it. This removes the circular dependency

#include <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}