forked from xiaoweiChen/CMake-Cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9b20210
commit 078ec9a
Showing
1 changed file
with
9 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# 第12章 构建文档 | ||
|
||
本章的主要内容有: | ||
|
||
* 使用Doxygen构建文档 | ||
* 使用Sphinx构建文档 | ||
* 结合Doxygen和Sphinx | ||
|
||
文档在所有的软件项目都是有必要的:对于用户来说,了解如何获得并构建代码,并且如何有效地使用源代码或库非常重要;并且对于开发人员来说,文档可用来描述你源码细节,并帮助其他程序员参与其中,为该项目作出贡献。本章将展示如何使用CMake构建代码文档,这里使用了两个流行的文档框架:Doxygen和Sphinx。 |