Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 1.96 KB

README.md

File metadata and controls

40 lines (30 loc) · 1.96 KB

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