I'm trying to build a solution , but I'm getting the following linker error :
"error LNK1104: cannot open file 'libeay32.lib'".
I have the library in the source code but I can't find a way to put it in the solution.
Any help would be appreciated
I found a way to add the library at the project level but i want to add it at the solution level
Linker settings (as well as compiler settings) in Visual Studio are always per project.
There is no way to add them in the solution level.
If you would like to share settings between several projects, then as @ AlanBirtles commented, you can create a property-sheet and add it to the relevant project(s).
From MS documentation for VS2015:
See more about it here: VS2015: Share or reuse Visual Studio project settings.