mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 05:52:41 +00:00
aefa2b9f48
* StatusQ QML module * qzxing is static lib again * updated StatusQ resources * fixed Emoji lookup * added display to tests-imports ci
25 lines
533 B
C++
25 lines
533 B
C++
#include <QGuiApplication>
|
|
#include <QQmlApplicationEngine>
|
|
#include <QDebug>
|
|
|
|
#include "sandboxapp.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
|
|
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
|
#endif
|
|
|
|
SandboxApp app(argc, argv);
|
|
|
|
qputenv("QT_QUICK_CONTROLS_HOVER_ENABLED", QByteArrayLiteral("1"));
|
|
|
|
app.setOrganizationName("Status");
|
|
app.setOrganizationDomain("status.im");
|
|
app.setApplicationName("Sandbox");
|
|
|
|
app.startEngine();
|
|
|
|
return app.exec();
|
|
}
|