You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
489 B
18 lines
489 B
#include "mainwindow.h" |
|
|
|
#include <QApplication> |
|
#include <FluentApp.h> |
|
|
|
|
|
int main(int argc, char *argv[]) |
|
{ |
|
|
|
Q_INIT_RESOURCE(qfluentwidgets); |
|
qfluentwidgets::setLicense("RjU5dGJZUE9ORkQ2SFg2T2RVaVQrMXEvUFpZSjdHU2x4NnNRR2p5VjRKYS8wWFppcE1sNjhtRVRoNmF4eHltSHg1dnVpWm12M0g4TzQxaEY5eUlTQXFodWo2dzQ1S3hPYWtMMXAvSkRDYXZNcyt0bg=="); |
|
// QApplication::setAttribute(Qt::AA_EnableHighDpiScaling); |
|
|
|
QApplication a(argc, argv); |
|
MainWindow w; |
|
w.show(); |
|
return a.exec(); |
|
}
|
|
|