I am coding a project in C++ in CodeBlocks, and I am trying to use the hashlib++ library, and I have it in my code as such:
#include <hashlibpp.h>
When I click "build and run", on that line of code I get the following error:
fatal error: hashlibpp.h: No such file or directory
I have the entire hashlib++ library in the same directory as my main.cpp file.
I was following the instructions on the documentation at http://hashlib2plus.sourceforge.net/doc/README.TXT.html but either the instructions in sections 3.1 and 3.2 did not work or I did not follow them properly.
I would appreciate any insight as to why I am getting this error.
Ok, so I figured out what the issue was. By section 3.1,
#include
line in your code. I downloaded the entire hashlib2plus folder and put it in my project folder, so mine looked like#include "hashlib2plus/trunk/src/hashlibpp.h"
Hope this resolves any issues in the future!