• 0 Posts
  • 3 Comments
Joined 2 years ago
cake
Cake day: June 8th, 2023

help-circle
rss


  • 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.