Skip to content

Instantly share code, notes, and snippets.

View rathod-sahaab's full-sized avatar
🎯
Limitless

Abhay Raj Singh rathod-sahaab

🎯
Limitless
View GitHub Profile
@ForgottenUmbrella
ForgottenUmbrella / using_conan_cpp.md
Last active April 9, 2025 06:19
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.