Page 1 of 1

Installing Magick++ with Visual Studio 2015, Windows 7

Posted: 2016-08-14T19:06:15-07:00
by GonVas
Hi,

I have installed ImageMagick (7.0.2 Q16) and i have used it a few times with cmd.
The thing is, I canĀ“t install Magick++ or make it work with Visual Studio 2015, can someone guide me from the begining on how to install it for visual studio 2015. I have already googled alot of solutions but none worked.

Thanks for any help.

Re: Installing Magick++ with Visual Studio 2015, Windows 7

Posted: 2016-09-24T21:07:33-07:00
by NetJohn
Need to set up the includes and libraries in the build setup.

In your solution explorer window (on the left), select your project, right click, select properties.

Then, select Configuration Properties --> C/C++ --> General and add the include path to "Additional Include Directories"

Then, select Configuration Properties --> Linker --> General and add the library path to "Additional Library Directories"

I think that's all I did for mine to work.

John

Re: Installing Magick++ with Visual Studio 2015, Windows 7

Posted: 2016-09-24T23:02:49-07:00
by NetJohn
Forgot something:

Under Configuration Properties --> Linker --> Input add the following to "Additional Dependencies:

Add:

CORE_RL_MagickCore_.lib
CORE_RL_Magick++_.lib
CORE_RL_MagickWand_.lib

John