refactor: structuring apps into polyrepo

This commit is contained in:
talksik
2026-01-13 10:53:58 -08:00
parent 564a166f09
commit 5fd763b028
5111 changed files with 4 additions and 121 deletions
+12
View File
@@ -0,0 +1,12 @@
#include <QApplication>
#include "src/MainWindow.h"
int main(int argc, char *argv[])
{
qDebug() << "hello world";
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}