1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
# phkaeser libbase
A small "standard library" for C, used for my personal projects.
### To configure
```bash
cmake [-DCMAKE_INSTALL_PREFIX:PATH="${HOME}/.local"] -S . -B build
```
### To build
```bash
(cd build && make)
```
### To install
```bash
(cd build && make install)
```
## Contributing
See [`CONTRIBUTING.md`](CONTRIBUTING.md) for details, and [code of conduct](CODE_OF_CONDUCT.md) for more. See the [idea backlog](BACKLOG.md) for inspiration.
## License
Apache 2.0; see [`LICENSE`](LICENSE) for details.
## Disclaimer
This project is not an official Google project. It is not supported by
Google and Google specifically disclaims all warranties as to its quality,
merchantability, or fitness for a particular purpose.
|