C++ Programming Tutorial #25 : Improved build system: object files & linking

Опубликовано: 30 Март 2026
на канале: Alan Carre
824
5

Watch Entire Series: http://www.youtube.com/view_play_list...

There are many things that have happened since the last update, and here, in order to look more deeply not only at the problem of parsing a command line, I demonstrate some of the features of the build system I've been working on. Still, only with batch files.

Although some of the work is still done by hand, much has been automated using very simple tools. Two in fact, DEBUG.exe and batch files. With these simple tools I can now split a project up into multiple source files, pre-compiled source and object file linking.

This allows me to speed up the build process and focus only on the piece of code I happen to be working on at the time.

Another lever added to the chain ...