c++ - How to add Botan library to VS 2013 project -
as result of installing botan library i've got these files:
- botan.dll
- botan.exp
- botan.lib
- and headers path include/botan/*.h, 1 of them botan.h must incuded in
i've added botan.lib , botan.h following this example "botan/botan.h: no such file or directory" error while building project.
#include <botan/botan.h> int main() { botan::libraryinitializer init; }
if include #include "c:/include/botan/botan.h"
it's okay botan.h can't rewrite headers using full path. e.g. botan.h file looks like:
#include <botan/init.h> #include <botan/lookup.h> ... #include <botan/rng.h> ...
so can't figure out how include these files properly.
Comments
Post a Comment