launcher/main.cpp

19 lines
331 B
C++

#include "loading.h"
#include "locales.h"
#include "prog-constains.h"
//#include "welcome.h"
#include <QApplication>
int main(int argc, char *argv[])
{
//qDebug() << QT_VERSION_STR;
//return 0;
//debugVariables();
initLocales();
QApplication a(argc, argv);
Loading w;
w.show();
return a.exec();
}