1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-25 05:47:45 +00:00
astra/src/main.cpp

21 lines
449 B
C++
Raw Normal View History

2021-11-01 09:54:58 -04:00
#include "xivlauncher.h"
#include <QApplication>
int main(int argc, char* argv[]) {
QApplication app(argc, argv);
QCoreApplication::setOrganizationName("redstrate");
QCoreApplication::setOrganizationDomain("com.redstrate");
#ifdef NDEBUG
QCoreApplication::setApplicationName("xivlauncher");
#else
QCoreApplication::setApplicationName("xivlauncher-debug");
#endif
2021-11-01 09:54:58 -04:00
LauncherWindow w;
w.show();
return app.exec();
}