this article misses a crucial conceptual point of using a higher-level build tool / meta-build tool with this line<p><pre><code> cd build && make
</code></pre>
by not using instead<p><pre><code> cmake --build build/
</code></pre>
and then use all the other options available to the cmake --build command. Think of CMake as your multi-platform build tool, not just a "makefile generator".