libraries

How to compile, install, and use custom libraries with CMake

In this article, we will look at how we can use CMake to compile and install a library we have developed, be it a static, dynamic, or header-only library. We look at all the steps we need to take to make the installation successful, which will contain steps to automatically generate files that other projects …

How to compile, install, and use custom libraries with CMake Read More »

How to handle C++ libraries with a package manager

In this article, we will be looking at package managers for C++ and how we can use them to compile and install libraries with as little as a single command line input. Specifically, we look at Conan, an open-source package manager for C/C++ which is gaining a lot of momentum in C++ circles. We’ll look …

How to handle C++ libraries with a package manager Read More »