mirror of
https://github.com/emergent-design/libemergent.git
synced 2026-04-13 17:19:32 +00:00
No description
- C++ 70%
- C 29.8%
|
|
||
|---|---|---|
| .forgejo/workflows | ||
| .github/workflows | ||
| include | ||
| packages | ||
| src/test | ||
| .clang-format | ||
| .editorconfig | ||
| .gitignore | ||
| .gitlab-ci.yml | ||
| CMakeLists.txt | ||
| Earthfile | ||
| LICENSE | ||
| README.md | ||
libemergent
A collection of useful classes:
Installation
This is a header-only library, simply ensure that the headers are on the appropriate include path.
Under Ubuntu there are dev packages available to download
which will install the headers to /usr/include.
Dependencies
libemergent has the following external dependencies. You must ensure that the appropriate headers and binaries are available on the include/lib paths if you use specific features of this library.
- FreeImage for loading and saving images. Your application must link to this if you use the Image<> class.
- hiredis client library. Your application must link to this if you use any of the Redis classes.
On debian-based systems the relevant dependencies can be easily installed as follows:
$ sudo apt-get install build-essential libfreeimage-dev libhiredis-dev