14 lines
471 B
C++
14 lines
471 B
C++
|
#include "mainwindow.h"
|
||
|
|
||
|
#include <QApplication>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
QApplication a(argc, argv);
|
||
|
// 把 kimageformats 构建生成的目录里的 bin 目录的完整路径改到下面,这样程序会去这个目录查找并启用图像格式插件。
|
||
|
QCoreApplication::addLibraryPath(R"(C:\Users\Gary\Source\build-kimageformats-Desktop_Qt_5_14_2_MinGW_64_bit-Debug\bin)");
|
||
|
MainWindow w;
|
||
|
w.show();
|
||
|
return a.exec();
|
||
|
}
|