Skip to main content

Installation

Recommended approach

It is not recommended to install this library manually. Instead, you can initialize a C service using roverctl using this command.

This library cannot be installed using any package manager. Instead, you can download the source code from the latest release and integrate it in your C project. Take a look at the provided Devcontainer to understand which libraries need to be installed.

You will need to install joelguittet/c-hashtable and joelguittet/c-list manually. This can be done from both folders in the /dependencies folder, like so:

# Example for c-hashtable, just switch name for c-list
cd dependencies/c-hashtable
mkdir build
cd build
cmake ..
make
sudo make install