LogDoctor_Installer/installer/main.cpp
Valentino Orlandi 565cd39bbd
Improvements
Code improvements.
Moved OS check to compile time.
2023-05-21 22:55:37 +02:00

18 lines
321 B
C++

#include <QApplication>
#if !(defined( Q_OS_LINUX ) || defined( Q_OS_BSD4 ) || defined( Q_OS_WINDOWS ) || defined( Q_OS_MACOS ))
# error "System not supported"
#endif
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}