当前位置: 技术问答>linux和unix
KDevelop&QT编译的一个问题
来源: 互联网 发布时间:2015-03-14
本文导语: #include int main(int argc, char *argv[]) { ...... return EXIT_SUCCESS; } 编译出错:main.cpp:27:21: qthread.h: No such file or directory 试问:需要在KDevelop环境中设置哪些属性 | 设置 --with-qt-di...
#include
int main(int argc, char *argv[])
{
......
return EXIT_SUCCESS;
}
编译出错:main.cpp:27:21: qthread.h: No such file or directory
试问:需要在KDevelop环境中设置哪些属性
int main(int argc, char *argv[])
{
......
return EXIT_SUCCESS;
}
编译出错:main.cpp:27:21: qthread.h: No such file or directory
试问:需要在KDevelop环境中设置哪些属性
|
设置
--with-qt-dir=/usr/lib/qt-2.3.1
再不行就直接指定
-I/usr/lib/qt-2.3.1/include
--with-qt-dir=/usr/lib/qt-2.3.1
再不行就直接指定
-I/usr/lib/qt-2.3.1/include
|
不用派生!
你是编译错还是链接错?!
如果是编译错,可是还没有包含完头文件或者-I还不全;
如果是链接错,可能设置还没有完全,像-L之类的!
你是编译错还是链接错?!
如果是编译错,可是还没有包含完头文件或者-I还不全;
如果是链接错,可能设置还没有完全,像-L之类的!