QLibrary导入C++ DLL失败(找不到指定的模块)

可能遇到的问题:
1)Cannot load library C:\Users\201907\Desktop\788\MYLIB.dll: 找不到指定的模块。
2)errorString()输出:Unknown error,但不能打开库
3)DLL失败

问题原因:
因为VS2013生成的库是用debug生成的。只要把debug改成release就行了

Qt creator
部分代码:

MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::MainWindow)
{
    ui->setupUi(this);

    QString strPath =   QCoreApplication::applicationDirPath().append("\\").append("MYLIB.dll");
    library = new QLibrary(strPath);
    if(!library->load())
        ui->plainTextEdit_data->appendPlainText(library->errorString());
}

VS2013
生成的库,是要release,不能是debug。
QLibrary导入C++ DLL失败(找不到指定的模块)_第1张图片
然后将生成的库放到QT的exe下面

属性页:(有兴趣可以对照参考,几乎都是默认值)
QLibrary导入C++ DLL失败(找不到指定的模块)_第2张图片
QLibrary导入C++ DLL失败(找不到指定的模块)_第3张图片
QLibrary导入C++ DLL失败(找不到指定的模块)_第4张图片
QLibrary导入C++ DLL失败(找不到指定的模块)_第5张图片

QLibrary导入C++ DLL失败(找不到指定的模块)_第6张图片

你可能感兴趣的:(QT,VS,DLL)