You can build the project using either Make or CMake, depending on your preference.
To compile the project:
makeTo clean the build artifacts:
make cleanYou can run CMake commands manually:
cmake . -B build
cmake --build buildOr simply use the provided helper script cmake_build.sh, which runs the exact same commands:
# If needed, make the script executable
chmod +x cmake_build.sh
./cmake_build.sh