Day 2: Further Procedural C++ and Automating Builds with CMake
Resources
Zoom meeting link for today's session is available in the Bookmarks on the course Slack channel.
To create the starter repository for today's session please click hereLink opens in a new window
Programme
C++: |
We carry on with the core C++ syntax, covering the key topics of functions and references. |
Build Automation with CMake |
In the second part of the day, we start to modularize the functionality in our program to make it easier to work with and give it logical structure. We then use the CMake build tool to automate the compilation of the program from the component sources, break the build down into a main applicationand an implemtation library, and finally package everything up. |
C++: |
In the third part of the day we examine how to read from and write to files in C++ and finally we implement the Caesar cipher. |