my problem is fairly simple.. I'm not able to link libjpeg-turbo in my project.
I'm looking to try this exemple, but i'm not able to compile :
I'm not sure what i'm doing wrong :
You can download vcpkg from github and run vcpkg.exe in the Powershell prompt( opened in administrative mode) . vcpkg can install many open source projects (both static and dynamic libraries are supported) as packages ready for use in VS 2017 and VS 2015 (SP3) IDE. You can use choose x86 or x64 platform and in some cases even allows selection of toolset ( eg .\vcpkg install boost:x64-windows-v141 ). If you use 'integrate install' as the vcpkg command line, all the libraries will be automatically linked with your project and the project .dll files will be automatically copied to your application folder.
So, in your case, after the the installation of vcpkg.exe, you type .\vcpkg install libjpeg-turbo:x64-windows-static and after installation type .\vcpkg integrate install. The jpeg library will be linked automatically to your project (Restart your VS 2017 and enjoy).