Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
acts-core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
acts
acts-core
Merge requests
!614
WIP: Integrate high-level written and auto-generated code documentation
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
WIP: Integrate high-level written and auto-generated code documentation
601-documentation
into
master
Overview
3
Commits
20
Pipelines
6
Changes
54
Open
Moritz Kiehn
requested to merge
601-documentation
into
master
5 years ago
Overview
3
Commits
20
Pipelines
6
Changes
54
Expand
Closes
#601
.
Edited
5 years ago
by
Moritz Kiehn
0
0
Merge request reports
Compare
master
version 5
88618cb5
4 years ago
version 4
4da05c76
5 years ago
version 3
02d9379f
5 years ago
version 2
a7ffc487
5 years ago
version 1
81fc6f69
5 years ago
master (base)
and
latest version
latest version
61c2ac1f
20 commits,
4 years ago
version 5
88618cb5
19 commits,
4 years ago
version 4
4da05c76
19 commits,
5 years ago
version 3
02d9379f
19 commits,
5 years ago
version 2
a7ffc487
12 commits,
5 years ago
version 1
81fc6f69
12 commits,
5 years ago
54 files
+
1722
−
499
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
54
Search (e.g. *.vue) (Ctrl+P)
cmake/FindSphinx.cmake
0 → 100644
+
16
−
0
Options
# 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