1// Copyright (C) 2021 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
3
4#include <QApplication>
5
6#include "mainwindow.h"
7
8int main(int argc, char *argv[])
9{
10 QApplication app(argc, argv);
11 MainWindow window(nullptr);
12 window.show();
13
14 return app.exec();
15}
16

source code of qtquick3d/tools/balsamui/main.cpp