this post was submitted on 14 Jun 2023
52 points (100.0% liked)
Programming
13386 readers
1 users here now
All things programming and coding related. Subcommunity of Technology.
This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
An IDE is pretty helpful for C++ as a project grows. Code navigation helps a bunch, the integrated debugger is far more friendly than raw gdb, and not having to juggle windows is convenient.
As for IDEs, feel free to give several a shot. I highly recommend trying out QtCrearor even if you aren't using Qt at all. It is in my opinion the best C++ ide, and the minimal UI keeps distractions to a minimum.
Also, you mention using make files. You should really take a look at adopting a build tool such as cmake (the most common, but kind of a mess) or meson (which is much friendlier), as hand crafted make files don't scale particularly well.