我尝试使用vc ++ for Linux Development插件在windows上构建一个linux应用程序。它适用于简单的printf
。但是当我尝试include
本地文件时。我收到了这个错误:
mongoose.h: No such file or directory
项目目录的内容:
test
|---- bin
|---- main.cpp
|---- mongoose
|---- mongoose.c
|---- mongoose.h
|---- obj
|---- test.vcxproj
test.sln
我曾尝试将 但我得到了同样的错误。我无法弄清楚问题是什么,有什么建议吗?谢谢。 ----------------------- 2016年6月22日--------------------- ------------------------ 感谢@Murphy的评论,它在使用 但我仍然感到困惑, vc ++ for Linux Development 插件的属性设置是否有效?如果是这样,它是如何工作的?absolute path: D:Code\ForVS\test\test\mongoose
relative path: $(ProjectDir)mongoose
#include "mongoose/mongoose.h"
时有效。
答案 0 :(得分:0)
“$(ProjectDir)mongoose”是Windows风格的路径。
使用“./mongoose”。