conan

How to add external libraries into your CFD solver using CMake

After having reviewed how to compile your own library with CMake in the previous article, including what steps to take so that other people can consume your library in their project, we reverse the role in this article and look at how we can use someone else’s library in our project. In the process, we …

How to add external libraries into your CFD solver using 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 »