Move source to src folder

This commit is contained in:
Spiros
2024-06-13 19:08:32 +03:00
parent c267ce1ef2
commit ddbebe64a5
14 changed files with 11 additions and 11 deletions

12
src/main.cpp Normal file
View File

@@ -0,0 +1,12 @@
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.setWindowIcon(QIcon(":/icons/icon.svg"));
w.show();
return a.exec();
}