dll build problem
-
I'm writing a dll and I want a .lib file to be produced. Problem is the file isn't being created. I have unchecked the "Doesn't produce .LIB" option under the Link tab in the project settings like I'm supposed to, but for some reason it still isn't producing the .lib and I don't remember how to fix this. So what do I need to do? I'm using VC++ 6.0 Thanks!
-
I'm writing a dll and I want a .lib file to be produced. Problem is the file isn't being created. I have unchecked the "Doesn't produce .LIB" option under the Link tab in the project settings like I'm supposed to, but for some reason it still isn't producing the .lib and I don't remember how to fix this. So what do I need to do? I'm using VC++ 6.0 Thanks!
That checkbox never worked for me.... I would modify .dsp to: LIB32=link.exe -lib # ADD BASE LIB32 /nologo # ADD LIB32 /nologo TargetPath=.\Release\My.lib from LINK32=link.exe # ADD BASE LINK32 /nologo /subsystem:windows /dll /machine:I386 # ADD LINK32 /nologo /subsystem:windows /dll /machine:I386