CuteSchedule/main.cpp

27 lines
387 B
C++
Raw Normal View History

2023-04-15 18:19:07 +02:00
#ifndef _WIN32
#ifndef linux
#error "Can't recognize your platform. Please either set _WIN32 or 'linux' macro according to your system."
#endif
#endif
2023-04-06 06:10:33 +02:00
#include <QApplication>
2023-04-15 18:09:55 +02:00
2023-04-15 18:19:07 +02:00
#include "./src/config/config.h"
#include "src/mainwindow.h"
2023-04-06 06:10:33 +02:00
int main(int argc, char *argv[])
{
2023-04-15 18:19:07 +02:00
Config config;
2023-04-06 06:10:33 +02:00
QApplication a(argc, argv);
MainWindow w;
w.show();
2023-04-15 18:19:07 +02:00
2023-04-06 06:10:33 +02:00
return a.exec();
}