How to configure Crypto++ in Eclipse?

安稳与你 提交于 2019-12-13 00:46:17

问题


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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!