this post was submitted on 19 Feb 2024
18 points (100.0% liked)
C++
1773 readers
3 users here now
The center for all discussion and news regarding C++.
Rules
- Respect instance rules.
- Don't be a jerk.
- Please keep all posts related to C++.
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I think that this article is missing the most obvious and perhaps most used package manager for C and C++ projects: Linux distro's package repositories.
It should be stressed that package managers are a requirement for Windows and, to a far lesser degree, macOS. On any Linux distro, you'd just
apt install <dependency>-dev
and you'd be mostly set. It's mainly Windows development that draws this need to install packages to be able to develop anything.