A small containerization utility, written in C/C++. Made as team pet project.
Make sure to have these installed:
- Clang - compiler
- CMake - generates build files
- Ninja - builds
sudo apt update && \
sudo apt install -y clang cmake ninja-buildAll other dependencies will be fetched during CMake run.
Get the project:
git clone https://github.com/KittensBasket/dasboot.git && \
cd dasbootRun CMake and then build with Ninja:
mkdir build && \
cd build && \
cmake .. -G Ninja && \
ninjaRun
ctestto check all modules or for individual module tests - there is an executable file inside its directory ending with _ut.