Hijack SDL2 and GLEW include and library when compiling to javascript
emscripten already provides the SDL2 suite and will simply ignore
missing libraries.
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}