Some checks are pending
Build eismuliplexer for linux / Build (push) Waiting to run
17 lines
278 B
C++
17 lines
278 B
C++
// Copyright Carl Philipp Klemm 2026
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#include <QApplication>
|
|
#include <QThread>
|
|
|
|
#include "MainWindow.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication app(argc, argv);
|
|
|
|
MainWindow window;
|
|
window.show();
|
|
|
|
return app.exec();
|
|
}
|