Skip to content
Snippets Groups Projects

WIP: Integrate high-level written and auto-generated code documentation

Open Moritz Kiehn requested to merge 601-documentation into master
Files
54
+ 16
0
# Find the Sphinx documentation generator.
#
# This module defines the following variables:
# Sphinx_FOUND - whether Sphinx was found or not
# Sphinx_EXECUTABLE - Sphinx executable if if was found
#
find_program(
Sphinx_EXECUTABLE
NAMES sphinx-build sphinx-build-3
DOC "Sphinx documentation generator")
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(
Sphinx
REQUIRED_VARS Sphinx_EXECUTABLE)
Loading