chore: move to qt/ directory

This commit is contained in:
Eshan Roy (Eshanized)
2024-04-30 23:00:15 +05:30
parent be4ab50c7a
commit c5e736257a
4 changed files with 0 additions and 0 deletions

11
qt/main.cpp Normal file
View File

@@ -0,0 +1,11 @@
#include "snigdhaosassistant.h"
#include <QApplication>
int main(int argc, char* argv[])
{
QApplication a(argc, argv);
SetupAssistant w(nullptr, a.arguments().length() > 1 ? a.arguments()[1] : "");
w.show();
return a.exec();
}