问题
I want to use Crypto++ in Eclipse. I've installed it correctly but I dunno why it cannot find the path.
using namespace CryptoPP;
Symbol CryptoPP cannot be resolved
and if I use #include "aes.h", for example is an unresolved inclusion.
How can I solve this?
回答1:
You have to set the include paths for your project.
Assuming you are using CDT go to "Project->Properties->C/C++ Build->Settings" and now in your configured compiler to "Includes" and add the path to your library. The same has to be done for your linker with "Libraries".
来源:https://stackoverflow.com/questions/7847835/how-to-configure-crypto-in-eclipse