Page 1 of 1

fatal error LNK1181: cannot open input file...

Posted: 2015-04-30T09:16:13-07:00
by OneIron1
I'm trying to rebuild from source...

OS: Windows 7 sp1 Professional 64Bit
C++ Enviroment: Visual Studio 2013 x64 debug build

receiving the following:

fatal error LNK1181: cannot open input file '..\Debug\DynamicMT-x64\CORE_webp\alpha.obj'

One thing I've noticed is that there are two alpha.c files...

Anyone else experiencing this and is there a solution?

Re: fatal error LNK1181: cannot open input file...

Posted: 2015-05-15T00:34:24-07:00
by rbar
I have the same problem.

OS: Windows 7 sp1 Professional 64Bit
C++ Enviroment: Visual Studio 2013 x64 debug build

Any ideas?

Re: fatal error LNK1181: cannot open input file...

Posted: 2015-05-21T02:44:00-07:00
by rbar
Ok. Got it.

In "ImageMagickObject_.h" I had to set the WINVER tp 0x0500 and some old MFC lib was missing. I got it from here: https://www.microsoft.com/en-us/downloa ... x?id=40770.

Unfortunately that's not all:
Adding two include directories was necessary: <ImageMagick-dist>\Magick++\lib and <ImageMagick-dist>.
And finally all 28 libraries of the directory <ImageMagick-dist>\VisualMagick\lib had to be added to my project.
Not very comfortable. But for now it works.