You can build the project using either Make or CMake, depending on your preference.
To compile the project:
make
To clean the build artifacts:
make clean
You can run CMake commands manually:
cmake . -B build
cmake --build build
Or 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