标签: netbeans
我安装了IDE NetBeans用于C / C ++开发。我用main.c和makefile生成了netbeans创建了C项目。当我在我的项目中添加test.h文件并尝试编译它时,我看到netbeans没有看到这个头文件,并且我不会写它,即使编译成功也有错误。如何在netbeans中连接头文件?
感谢。
答案 0 :(得分:3)
只有当h-file包含在c / cpp文件中时才会编译:
#include "test.h"