[Fix] fix typo in cmake tutorial (#188)

[Fix] fix typo in cmake tutorial
This commit is contained in:
flyingpig 2022-07-08 10:40:05 +08:00 committed by GitHub
commit d9cea10594
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
## 为什么学习 CMake
CMake 是类似于 GNU make 的跨平台自动软件构工具,使用 CMakeLists.txt 定义构建规则,相比于 make 它提供了更多的功能,在各种软件构建上广泛使用。**强烈建议学习使用 GNU Make 和熟悉 `Makefile` 后再学习 CMake**。
CMake 是类似于 GNU make 的跨平台自动软件构工具,使用 CMakeLists.txt 定义构建规则,相比于 make 它提供了更多的功能,在各种软件构建上广泛使用。**强烈建议学习使用 GNU Make 和熟悉 `Makefile` 后再学习 CMake**。
## 如何学习 CMake