the cdb terminated,Qt调试器问题

来源:互联网 发布:骑马钉排版知乎 编辑:程序博客网 时间:2024/05/16 08:49



the cdb terminated,Qt调试器问题

没有找到原因:只是把头文件,静态库,动态库都添加进来,后面就可以调试了,


the cdb terminated,Qt调试器问the cdb terminated,Qt调试器问

windows下面用的是动态链接库dll,(lib是静态库),配置:


INCLUDEPATH += D:\opencv\build\include
CONFIG(debug, debug|release): {
LIBS += -LD:\opencv\build\x86\vc14\bin \
-lopencv_world320
-lopencv_world320d
} else:CONFIG(release, debug|release): {
LIBS += -LD:\opencv\build\x86\vc14\bin \
-lopencv_world320
-lopencv_world320d
}
这个是可以的,因为opencv其他函数调用正常,findContours不太正常。