https://github.com/sagacious-software/kit
Utility library in ANSI C!
https://github.com/sagacious-software/kit
ansi ansi-c c c89 c90 lib library utility
Last synced: 29 days ago
JSON representation
Utility library in ANSI C!
- Host: GitHub
- URL: https://github.com/sagacious-software/kit
- Owner: Sagacious-Software
- License: mit
- Created: 2020-11-04T03:23:08.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-22T23:39:21.000Z (over 5 years ago)
- Last Synced: 2025-01-16T07:13:16.076Z (over 1 year ago)
- Topics: ansi, ansi-c, c, c89, c90, lib, library, utility
- Language: C
- Homepage:
- Size: 20.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Kit
ANSI C utility library!
## Build
You will need `meson` in order to build the library.
Build the library by running this in the root of the repository:
```bash
meson builddir --buildtype release
cd builddir
meson compile
```
(Optionally do `--buildtype debug` instead if you would like to keep debugging information and turn optimizations off, e.g., if you want to do development.)
## Run the tests
Run the tests by running this in the build directory:
```bash
meson test
```
## Install
And when you are ready to install the library do this in the build directory:
```bash
meson install
```