本文介绍了缺少共享C ++项目的头文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我已经下载了一个.NET解决方案,它包含2个C#和1个C ++项目。
当我构建解决方案时,错误列表说:
I have downloaded an .NET solution, which is contains 2 C# and 1 C++ project.When I build the solution, the Error List says:
实际上,我在解决方案目录中看到一个名为 lib 的文件夹,它包含所有* .h文件,
Actually, I see an folder in solution directory named lib, it containts all *.h files that the C++ project need to use.
Som,如何使C ++项目在 lib 文件夹中看到这些* .h?
Som, How to make the C++ project see these *.h in the lib folder?
推荐答案
打开项目的属性对话框。
然后转到:配置属性 - C / C ++ - 常规 - 其他包括目录并添加libavformat文件夹的路径。
Open the project's property dialog.Then go to: Configuration Properties - C/C++ - General - Additional Include Directories and add the path to the libavformat folder.
这篇关于缺少共享C ++项目的头文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!