我在qmake項目中遇到了包含問題。在我的.pro文件我有:qmake項目文件INCLUDEPATH不起作用
INCLUDEPATH += "C:\OpenCV\build\include"
,並在我的cpp:
#include <opencv\cv.h>
編譯器顯示錯誤:
Cannot open include file: 'opencv\cv.h': No such file or directory
,但如果我寫這在我的cpp :
#include "C:\OpenCV\build\include\opencv\cv.h"
它的工作原理!
我從Qt Creator中構建項目。我究竟做錯了什麼?
你嘗試設置'INCLUDEPATH + = 「C:\\ \\的OpenCV建\\包括」'和源使用的#include''文件? –
vahancho
我試過了,但它不起作用... – user2794529
好的我在這裏找到了解決方案:http://stackoverflow.com/questions/14742856/qt-creator-adding-external-library-still-cannot-open-include -file -gl-glew -h我重新運行了qmake -.-' – user2794529