我对 Qt 5 和 Qt Creator 相当陌生。我创建了一个名为 D20Controls 的库项目。我有 D20Controls.lib 文件。在我的项目中,我想使用我的 lib D20Controls 的类。所以我右键单击我的项目并添加库...我选择外部库并浏览到我的 D20Controls.Lib 文件。现在一切似乎都正确地添加到了我的 .pro 文件中。
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../../build-D20Controls-Desktop_Qt_5_1_1_MSVC2012_64bit-Debug/release/ -lD20Controls
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../../build-D20Controls-Desktop_Qt_5_1_1_MSVC2012_64bit-Debug/debug/ -lD20Controls
INCLUDEPATH += $$PWD/../../build-D20Controls-Desktop_Qt_5_1_1_MSVC2012_64bit-Debug/debug
DEPENDPATH += $$PWD/../../build-D20Controls-Desktop_Qt_5_1_1_MSVC2012_64bit-Debug/debug
win32:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/../../build-D20Controls-Desktop_Qt_5_1_1_MSVC2012_64bit-Debug/release/D20Controls.lib
else:win32:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/../../build-D20Controls-Desktop_Qt_5_1_1_MSVC2012_64bit-Debug/debug/D20Controls.lib
但是当我想在我的项目
#include <D20Controls>
或其中的任何 .h 文件中使用它时,我无法编译如下错误: ...main.cpp:4: error: C1083: Cannot open include file: 'D20Controls': No such文件或目录
我怎样才能使用我的 lib ?(我试过静态链接和动态链接)
我错过了什么?