Overview

librygel-core is part of the Rygel project.

librygel-core is a collection of classes useful to Rygel's server and renderer implementation libraries and useful to plugin implementors.

librygel-core is licensed under the GNU Lesser General Public License (LGPL).

Basic Usage

Include the header:

#include <rygel-core.h>

If your source file is program.c, you can compile it with:

gcc program.cc -o program `pkg-config --cflags --libs rygel-core-2.0`

Alternatively, if using autoconf, use the following in configure.ac:

PKG_CHECK_MODULES([DEPS], [rygel-core-2.0])

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)