SmartLockerTools/OtaUpdate/main.cpp
luocai 2661f0729a
All checks were successful
Build Applications / PullDocker (push) Successful in 7s
Build Applications / Build (push) Successful in 2m26s
Windows CI / build (push) Successful in 3m41s
optimize communicate stop.
2024-10-25 17:18:09 +08:00

21 lines
438 B
C++

#include "BoostLog.h"
#include "Widget.h"
#include <QApplication>
#include <QFont>
int main(int argc, char *argv[]) {
boost::log::initialize("logs/app");
QApplication a(argc, argv);
QFont font;
font.setPointSize(16);
a.setFont(font);
Widget w;
w.setWindowTitle("掌静脉模组升级工具");
w.setMinimumWidth(520);
w.setMinimumHeight(100);
w.show();
return a.exec();
}