launch/main.cpp
Zack Middleton ab2ebf754d Add project, fix building using Qt5
Project file based on @8bitprodigy's google code repo.
2013-12-01 19:49:45 -06:00

11 lines
174 B
C++

#include <QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
ioLaunch w;
w.show();
return a.exec();
}