Add missing source file

This commit is contained in:
Phillip Stephens 2017-12-05 20:49:56 -08:00
parent 479a44910b
commit 15ccb5e928
1 changed files with 10 additions and 0 deletions

10
hecl-gui/main.cpp Normal file
View File

@ -0,0 +1,10 @@
#include <QGuiApplication>
#include "MainWindow.hpp"
int main(int argc, char* argv[])
{
QGuiApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}