a C++ library to parse EBML files
Specifications may be rendered at http://matroska-org.github.io/libebml/
libebml is based on cmake
and requires only a C++ compiler
supporting at least the C++17 standard. This means that the normal
build process consists of the usual steps:
- Create a build directory:
mkdir build ; cd build
- Generate the make file:
cmake ..
- Compilation:
make
- Installation (run this as root):
make install
By default only a static library is built.
This library supports the usual cmake
options for specifying
installation paths (e.g. -DCMAKE_INSTALL_PREFIX=/opt/libebml
). The
following additional cmake
options are supported:
-DDISABLE_PKGCONFIG=YES
— don't generate and install thelibebml.pc
package configuration module forpkg-config
-DDISABLE_CMAKE_CONFIG=YES
— don't generate and install the package configuration module forcmake
. Note that buildinglibebml
requires that thecmake
configuration is available.-DBUILD_SHARED_LIBS=YES
— build the shared library instead of the static one (default: no)
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.
UTF-8 with C++ in a Portable Way
- Copyright: 2006 Nemanja Trifunovic
- License: BOOST (see
src/lib/utf8-cpp/source/utf8.h
) - URL: http://utfcpp.sourceforge.net/
- Corresponding files:
src/lib/utf8-cpp/*