main.cpp 228 B

1234567891011121314
  1. #include "widget.h"
  2. #include <QApplication>
  3. #include "loginit.h"
  4. #include "spdlog/spdlog.h"
  5. int main(int argc, char *argv[])
  6. {
  7. QApplication a(argc, argv);
  8. init_log();
  9. Widget w;
  10. w.show();
  11. return a.exec();
  12. }