I am working with the OpenSSL library for C++. I used this library in another project and it worked great. I carried it over to another project today and I'm having issues.
Two of the header files are .h.in
files: opensslv.h.in
and configuration.h.in
.
In the first project, this was not an issue. But in my new project it gives me an error on this line
#include <openssl/configuration.h>
because configuration.h
cannot be found:
...\include\openssl\opensslconf.h(14): fatal error C1083: Cannot open include file: 'openssl/configuration.h': No such file or directory
I understand there is no literal configuration.h
file but from what I understand that configuration.h.in
file should generate a configuration.h
file right?
Does anybody have any idea why that might be happening? Maybe I changed something in the project properties?