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
|
|
|
|
2023-04-16 02:35:13 +02:00
|
|
|
#ifdef _WIN32
|
|
|
|
#pragma message ( "Windows build is not supported, and should be quite unstable." )
|
|
|
|
#endif
|
|
|
|
|
2023-04-06 06:10:33 +02:00
|
|
|
#include <QApplication>
|
2023-04-15 18:09:55 +02:00
|
|
|
|
2023-04-16 02:35:13 +02:00
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
#include "src/config/config.h"
|
|
|
|
#include "src/sysutil.h"
|
2023-04-15 18:19:07 +02:00
|
|
|
#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-16 02:35:13 +02:00
|
|
|
std::cout << config.loadDefaultConfig() << '\n';
|
|
|
|
return 0;
|
2023-04-15 18:19:07 +02:00
|
|
|
|
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();
|
|
|
|
}
|