Initiate a "Hello world" cpp program and CMake file. Includes src and build directories.
Automating the creation of CMake files, which automate the creation of make files, which automates the compilation of programs, feels a lot like a factory factory factory, but either way it's nice to have a consistent way to structure projects.
Made as a more complex program to introduce myself to C++
Go into build/ then run:
cmake .. # Create the make file
make # Runs the make file to compile the code
This is also how the project creates it's own Hello World program