Skip to content

Installation

Kay Steinhoff edited this page Oct 7, 2024 · 1 revision

Installation

Currently CR doesn't have any precompiled binaries but to install cr you can either clone the repository using git:

git clone https://github.com/KaySteinhoff/CR.git

or download the source code from github.

Then you can just copy the source files into your project or create a dynamically linked library:

(Linux)

gcc -shared -fpic src/cr.c -I inc -lm -Wall -Werror -o cr.so

(Windows)

gcc -shared -fpic src/cr.c -I inc -Wall -Werror -o cr.dll

Clone this wiki locally