I'm working with python, but I have a basic understanding of packaging with C. However I don't know how to build the c 'path.' Also, my google searches seem to be failing me returning results on c++. Or is that my solution?

The objective is to include qrencode.h, I can surly put it in the same folder but I'd like to know how to link to it instead.

Thanks!

PS. As always, addition to read material that is relevant would be much appreciated!

link|improve this question

79% accept rate
1  
.h files are not libraries. – Ignacio Vazquez-Abrams Apr 30 '11 at 3:19
feedback

1 Answer

up vote 1 down vote accepted

You use an include directive to include the *.h file in your C/C++ code:

#include "qrencode.h"

As @Ignacio Vazquez-Abrams says, though, that's just a header, which declares functions; you need the actual functions, and they'll be in a *.dylib or *.so file, which needs to be linked into an executable. Compiling is turning one *.c file into a *.o file; linking is when you put all the *.o files and libraries together into an application. The -L option on the linker command line tells it where to look for libraries; the -l option tells it to include a library.

link|improve this answer
In ubuntu, I can install packages that consist of ...-dev in the name. After pactching said library, in this case libqrencode-dev. I can then create the python binding. How do I install the libqrencode-dev equivalent on max os? I've checked port for qrencode and libqrencode – jbcurtin Apr 30 '11 at 3:50
*-dev are the headers, right? Or am I mistaken? – jbcurtin Apr 30 '11 at 3:59
*-dev packages are the headers and the libraries, yes. Personally, I'd just download the source from here and expect it to compile pretty easily. – Ernest Friedman-Hill Apr 30 '11 at 4:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.