C++ 如何将Botan库添加到VS 2013项目

C++ 如何将Botan库添加到VS 2013项目,c++,libraries,botan,C++,Libraries,Botan,安装Botan library后,我得到了以下文件: 植物学.dll 植物实验 植物学图书馆 路径为/botan/*.h的头文件,其中一个是botan.h,必须包含在 我在下面添加了botan.lib和botan.h,但在构建项目时出现“botan/botan.h:没有这样的文件或目录”错误 #include <botan/botan.h> int main() { Botan::LibraryInitializer init; } 所以我

安装Botan library后,我得到了以下文件:

  • 植物学.dll
  • 植物实验
  • 植物学图书馆
  • 路径为/botan/*.h的头文件,其中一个是botan.h,必须包含在
我在下面添加了botan.lib和botan.h,但在构建项目时出现“botan/botan.h:没有这样的文件或目录”错误

 #include <botan/botan.h>


   int main()
   {
       Botan::LibraryInitializer init;
   }

所以我不知道如何正确地包含所有这些文件

问题已经解决了。这是我的VS配置。谢谢,我也有类似的问题,如果你联系我,告诉我你是如何解决的,我会很高兴。非常感谢。
#include <botan/init.h>
#include <botan/lookup.h>
...
#include <botan/rng.h>
...