I am compiling a project under Visual Studio 2013 (OS: Windows 7). The Project is compiled with the Platform Toolset "Visual Studio 2008 (v90)". In the options I have set a dll to be loaded delayed like this:
/DELAYLOAD:"PluginPost.dlll"
The error I am getting is the following:
1>LINK : fatal error LNK1181: cannot open input file 'Delayimp.lib'
And now my question is the following. I know that I need the Delayimp.lib in order to load a dll delayed, but where do I find this Delayimp.lib?
Thank you in advance for any hints.
PS. I am compiling a 64 Bit application.