I downloaded some code that make use of libjpeg, but no dlls in the source files are included, and I'm trying to make it compile / execute correctly.
I am using VS2010:
in my source files I have #include "jpeglib.h"
and in Linker > Input > Additional Dependencies
I have jpeg.lib
, both of which can't be found on my computer.
I managed to go here : http://gnuwin32.sourceforge.net/packages/jpeg.htm and downloaded the "developer files" archives, which indeed contains the header and the .lib file. The programs compiles fine, but when I execute the .exe I have a jpeg62.dll missing
error that I don't understand.
How am I supposed to solve this?
First off, I couldn't find any jpeg62.dll file on the previous website.
Secondly, I wonder why I need a dll since I thought that using .lib files for the link meant that I wouldn't need dlls for my programm to run. Any help is appreciated