pcclark4 / cggml

A general algorithms library written in ANSI C.
1 stars 0 forks source link

cggml

Rhymes with signal. A general algorithms library for the purpose of me practicing C. If you aren't Phil or someone who knows Phil, use at your own risk.

Goals

How to build

The unit testing portion of this project has a dependency on libcheck. See https://libcheck.github.io/check/

mkdir build \ cd build \ cmake .. \ make

If you don't want to build tests, build the modules separately.

mkdir build \ cd build \ cmake .. \ make geometry \ make sort \ make search