Install and compile cppkafka
masterTo compile cppkafka from source, ensure you have the following dependencies installed:
librdkafka >= 0.9.4CMake >= 3.9.2- A C++11 compatible compiler (e.g.,
gcc >= 4.8) - The Boost library (specifically for
boost::optional)
Follow these steps to build and install:
mkdir build
cd build
cmake <OPTIONS> ..
make
make install