main.cpp 293 B

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