Add note on cmake --build

This commit is contained in:
Jason Turner
2019-04-18 15:00:48 -06:00
committed by GitHub
parent 5d2c6d23fc
commit 54e2a3b7a4

View File

@@ -22,6 +22,7 @@ Use an industry standard widely accepted build tool. This prevents you from rein
* Utilize: https://cmake.org/cmake/help/v3.6/command/target_compile_features.html for C++ standard flags
* Consider: https://github.com/cheshirekow/cmake_format for automatic formatting of your CMakeLists.txt
* See the [Further Reading](10-Further_Reading.md) section for CMake specific best practices
* `cmake --build` provides a common interface for compiling your project regardless of platform
* [Waf](https://waf.io/)
* [FASTBuild](http://www.fastbuild.org/)
* [Ninja](https://ninja-build.org/) - can greatly improve the incremental build time of your larger projects. Can be used as a target for CMake.