-
Notifications
You must be signed in to change notification settings - Fork 481
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial CMake version of Sphinx stuff.
- Loading branch information
Showing
5 changed files
with
62 additions
and
278 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 |
---|---|---|
|
@@ -22,6 +22,7 @@ build/VC2010 | |
|
||
# Sphinx generated documentation | ||
docs/_*/ | ||
docs/html/ | ||
|
||
#except for the real one | ||
!build/ | ||
|
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,16 @@ | ||
# build the documentation with Sphinx | ||
find_program(SPHINX_EXECUTABLE NAMES sphinx-build | ||
HINTS | ||
$ENV{SPHINX_DIR} | ||
PATH_SUFFIXES bin | ||
DOC "Sphinx Documentation Generator" | ||
) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
|
||
find_package_handle_standard_args(Sphinx DEFAULT_MSG | ||
SPHINX_EXECUTABLE | ||
) | ||
|
||
mark_as_advanced(SPHINX_EXECUTABLE) | ||
|
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
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