![]() |
![]() |
![]() |
![]() |
librygel-db is part of the Rygel project.
librygel-db is a small wrapper around SQLite3 used in several plugin implementations.
librygel-db is licensed under the GNU Lesser General Public License (LGPL).
Include the header:
#include <rygel-db.h>
If your source file is program.c, you can compile it with:
gcc program.cc -o program `pkg-config --cflags --libs rygel-db-2.6`
Alternatively, if using autoconf, use the following in configure.ac:
PKG_CHECK_MODULES([DEPS], [rygel-db-2.6])
Then use the generated DEPS_CFLAGS and DEPS_LIBS variables in the project Makefile.am files. For example:
program_CPPFLAGS = $(DEPS_CFLAGS) program_LDADD = $(DEPS_LIBS)