This library, entirely in C and using only the C standard libraries, implements the Session Description Protocol - SDP - as described by the RCF 4566 of the IETF.
The project is meant to be build via CMake
and Make
. You should also have a C
compiler (whether it be GCC or CLANG).
The documentation is made thanks to doxygen
, so you must have it installed on
your machine.
See here to install
doxygen
.
The test are conducted with the criterion
framework. To be able to run the
tests, make you this framework is installed and available. See the
criterion github project.
Follow the instructions below to build the library.
git clone https://github.com/SiwonP/libsdp.git
cd libsdp
mkdir build
cd build
cmake -DBUILD_TYPE=RELEASE ..
make
There are no binaries released currently.
There are no packages available so far.
After building the library from source just run make test
in your build
folder.
The doc is generated by doxygen, so you should have it installed.
doxygen Doxyfile
It creates a doc
folder containing both html
and latex
version of the
documentation.
-
To open the documentation in the browser, open the
doc/html/index.html
file. -
To open the pdf version :
cd doc/latex
make
The pdf is called refman.pdf
.
- Simon Petit - Initial contributer and only author so far.
This library is under the GNU General Public License, see LICENSE for details.