Integrating a Library into a VC++ Project
-
Hello guys, I need to use the: The Pairing-Based Cryptography Library(http://crypto.stanford.edu/pbc/download.html), for one of my projects. And the problem is that I dont know how to integrate it into my existing project; the web-site doesnt provide any manuals for this either. I know how to integrate pure classes(.cpp, .h) files into my project, but not libraries. Does anybody know any good tutorial for this ? Thanks !
-
Hello guys, I need to use the: The Pairing-Based Cryptography Library(http://crypto.stanford.edu/pbc/download.html), for one of my projects. And the problem is that I dont know how to integrate it into my existing project; the web-site doesnt provide any manuals for this either. I know how to integrate pure classes(.cpp, .h) files into my project, but not libraries. Does anybody know any good tutorial for this ? Thanks !
Project -> Add to project... Change the extension to be able to find Libs, select it and ok.
Greetings. -------- M.D.V. If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about? Help me to understand what I'm saying, and I'll explain it better to you ;)
-
Hello guys, I need to use the: The Pairing-Based Cryptography Library(http://crypto.stanford.edu/pbc/download.html), for one of my projects. And the problem is that I dont know how to integrate it into my existing project; the web-site doesnt provide any manuals for this either. I know how to integrate pure classes(.cpp, .h) files into my project, but not libraries. Does anybody know any good tutorial for this ? Thanks !
Which IDE are you using ? For VC2005, open the project properties -> "Linker" -> "Input" and in the field "Additional Dependencies" put the name of your library (with the full path). You can also put the path in "Linker" -> "General" -> "Additional Library Directories".
Cédric Moonen Software developer
Charting control [v1.2] -
Project -> Add to project... Change the extension to be able to find Libs, select it and ok.
Greetings. -------- M.D.V. If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about? Help me to understand what I'm saying, and I'll explain it better to you ;)
Thanks Nelek !
-
Which IDE are you using ? For VC2005, open the project properties -> "Linker" -> "Input" and in the field "Additional Dependencies" put the name of your library (with the full path). You can also put the path in "Linker" -> "General" -> "Additional Library Directories".
Cédric Moonen Software developer
Charting control [v1.2]Thanks Cedric, I am using VS2005, and I will try what you suggested later. Thanks !