Install Guide
This guide will help you install the assert library on your system.
Prerequisites
Make sure you have the following installed on your system:
- A C++20 compatible compiler (e.g.,
g++) makebuild tool
Installing the Library
assert is a header-only library.
- Clone the repository:
git clone https://gitlab.com/opentl/assert.git cd assert - Install the library to the default location:
sudo make install - To uninstall the library:
sudo make uninstall
Usage
Include the library in your C++ project:
#include <opentl/assert.hpp>