> 'additional dependencies'. When I now look at the linker command line it
> looks like this:
>
> /OUT:".\Debug/MCSProg.exe" /INCREMENTAL /NOLOGO /DEBUG
> /PDB:".\Debug/MCSProg.pdb"
> /SUBSYSTEM:WINDOWS /MACHINE:X86 ltechexd.lib "p\ImpLib\ltechexd.lib"
[..]
> Somehow "p\ImpLib\ltechexd.lib" creeps in and it is this generating the
> linker error 1104 (which is fine
> since there is no such thing like "p\ImpLib\ltechexd.lib").
> What is this "p\ImpLib\ltechexd.lib" and where does it come from? It is
> not
There's an option in the IDE that automatically links against the import
libraries
generated for projects in the same solution that your project depends on.
If you have a project in the solution that generates ltechexd.lib you should
change the setting under Linker->General->Ignore Import Library to Yes.
Also see "IgnoreImportLibrary property"
> libraries are stored at \\jupiter\cpp\implib. This path was also added to
> the library paths of VC++ directories.
[quoted text clipped - 4 lines]
> command line and there are of course
> no more linker errors.
That's odd. Maybe you have some bad character in the XML markup
of your project file? I have no idea what would cause this.
-hg