-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
Kay Steinhoff edited this page Oct 7, 2024
·
1 revision
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.gitor 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