Disabling in-source builds
Let's learn about disabling in-source builds in CMake.
We'll cover the following...
It is always recommended to specify the build path as out-of-source. This not only allows for a cleaner build tree and a simpler .gitignore
file, but it also decreases the chances we'll accidentally overwrite or delete any source files. Disabling the in-source build ...