【发布时间】:2017-08-06 17:58:53
【问题描述】:
我正在尝试将植物库与 Eclipse 一起使用。我使用 Ubuntu 编译了 botan,并创建了如下的小程序
#include <botan/botan.h>
int main()
{
LibraryInitializer init;
return 0;
}
但我遇到了致命错误:botan/build.h: No such file or directory
提前致谢,等待帮助。
【问题讨论】:
-
参见 Eclipse 帮助中心的 Adding Include paths and symbols 和 Stack Overflow 的 With Eclipse: How to add include paths and libraries for all your C/C++ project。
标签: c++ eclipse compiler-errors botan