Video-Datenbank/main.cpp

14 lines
288 B
C++
Raw Permalink Normal View History

2025-02-15 08:35:11 +01:00
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[]){
QApplication a(argc, argv);
2025-02-15 08:39:23 +01:00
#ifdef __linux__
a.setWindowIcon(QIcon("/usr/local/share/icons/Video-Datenbank/Video-Datenbank-32.png"));
#endif
2025-02-15 08:35:11 +01:00
MainWindow w;
w.show();
return a.exec();
}