Skip to content

Instantly share code, notes, and snippets.

View elyosemite's full-sized avatar
🎯
Focusing

Yuri Melo elyosemite

🎯
Focusing
View GitHub Profile
@ForgottenUmbrella
ForgottenUmbrella / using_conan_cpp.md
Last active November 14, 2025 10:33
How to use Conan, a C++ package manager, for beginners

Package Management in C++ with Conan for Beginners

C++ package management can be complicated.

Below are some key tools involved:

Make

Make runs commands defined in a Makefile, for example, to build and install programs with the compiler and linker. For our purposes, we won't worry about what this looks like; you only need to understand its purpose in relation to CMake.