add a new dll, & lib files to my project
-
Hi, I just bought a third party SDK that came with some DLLs & LIBs. I wanted to keep those DLLs & LIBs in my product directory. So, I added my path to Project -> MyProeject Properities -> Linker -> General -> Additional Library Directories. But I still got the link error. I probably missed some steps. Can someone tell me what else I need to do? Thanks, Kevin
-
Hi, I just bought a third party SDK that came with some DLLs & LIBs. I wanted to keep those DLLs & LIBs in my product directory. So, I added my path to Project -> MyProeject Properities -> Linker -> General -> Additional Library Directories. But I still got the link error. I probably missed some steps. Can someone tell me what else I need to do? Thanks, Kevin
It seems that you did not add the names of the libraries in the Linker. After including the paths of the directories, you will also need to give the names of the
.lib
files. Or directly give the fully qualified path to the libs. In VC6 it is located in the Link tab -> Object/Library modules. In VC7 I think it is Linker->Input->Additional Dependencies. this is this. -
Hi, I just bought a third party SDK that came with some DLLs & LIBs. I wanted to keep those DLLs & LIBs in my product directory. So, I added my path to Project -> MyProeject Properities -> Linker -> General -> Additional Library Directories. But I still got the link error. I probably missed some steps. Can someone tell me what else I need to do? Thanks, Kevin
which version of VS are you using...
Owner drawn Jesus Loves
-
which version of VS are you using...
Owner drawn Jesus Loves
VC6
-
It seems that you did not add the names of the libraries in the Linker. After including the paths of the directories, you will also need to give the names of the
.lib
files. Or directly give the fully qualified path to the libs. In VC6 it is located in the Link tab -> Object/Library modules. In VC7 I think it is Linker->Input->Additional Dependencies. this is this.I am using VC6. > you will also need to give the names of the .lib files. >Or directly give the fully qualified path to the libs Can you where to do so? >In VC6 it is located in the Link tab -> Object/Library modules. I checked the Project -> MyProeject Properities -> Linker But I don't see the Ojbect/Library moudles. Am I look at the wrong place? Thanks, Kevin
-
I am using VC6. > you will also need to give the names of the .lib files. >Or directly give the fully qualified path to the libs Can you where to do so? >In VC6 it is located in the Link tab -> Object/Library modules. I checked the Project -> MyProeject Properities -> Linker But I don't see the Ojbect/Library moudles. Am I look at the wrong place? Thanks, Kevin
In VC6, the additional libraries paths is: Project->Settings->Link->Category : Input ->Additional Libraries path: ___ On the link tab, select
Input
from theCategory
combo box. Then you can plainly give the names of the lib files in the Object/library modules. Again, are you sure you are using VC6 and not VS .NET? Because as you said it is Myproject Properties ->Linker etc. this is this.