Month: July 2014

CMake and library properties

When writing libraries with CMake, you need to set a couple of properties, especially the VERSION and SOVERSION properties. For library libbar, it could look like:

This will give you a libbar.so => libbar.so.0 => libbar.so.0.0.0 symlink chain with

Top