feat:转移全部章节。

This commit is contained in:
徐涛
2024-02-05 23:09:03 +08:00
parent 28ccad22af
commit bb6c43f668
80 changed files with 2330 additions and 77 deletions

5
src/cmake/about-camke.md Normal file
View File

@@ -0,0 +1,5 @@
# CMake 配置
CMake 是一个跨平台的开源构建工具,用于编译生成 makefile可以简化手写 makedile 的巨大工作量。CMake 通过编写`CMakeLists.txt`文件进行配置,其中内容不区分大小写。
使用 CMake 配置的项目,可以先执行`cmake`命令编译 makefile然后再执行`make`命令使用 makefile 完成项目编译。