How do I compile my project with libquvi?
GNU/Linux (and alike) systems can use the pkg-config for this.
libquvi 0.9
$ gcc myprog.c `pkg-config --cflags --libs libquvi-0.9` -o myprog
If you are using GNU Autotools, add the following line to your configure.ac:
PKG_CHECK_MODULES([libquvi], [libquvi-0.9 >= 0.9.0])
libquvi 0.4
$ gcc myprog.c `pkg-config --cflags --libs libquvi` -o myprog
If you are using GNU Autotools, add the following line to your configure.ac:
PKG_CHECK_MODULES([libquvi], [libquvi >= 0.4.0])