Skip to content

Commit cb64f9e

Browse files
committed
Make the doc paths relative.
Signed-off-by: Sam.Richards@taurich.org <Sam.Richards@taurich.org>
1 parent 10cfc97 commit cb64f9e

3 files changed

Lines changed: 11 additions & 5 deletions

File tree

docs/Doxyfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ PROJECT_LOGO =
5858
# entered, it will be relative to the location where doxygen was started. If
5959
# left blank the current directory will be used.
6060

61-
OUTPUT_DIRECTORY = "/user_data/ted/dev/xstudio/__build/docs/docs/doxygen"
61+
OUTPUT_DIRECTORY = "_build/doxygen"
6262

6363
# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub-
6464
# directories (in 2 levels) under the output directory of each output format and
@@ -731,7 +731,7 @@ WARN_FORMAT = "$file:$line: $text"
731731
# messages should be written. If left blank the output is written to standard
732732
# error (stderr).
733733

734-
WARN_LOGFILE = "/user_data/ted/dev/xstudio/__build/docs/docs/doxygen/log.txt
734+
WARN_LOGFILE = "_build/doxygen/log.txt
735735

736736
#---------------------------------------------------------------------------
737737
# Configuration options related to the input files
@@ -743,9 +743,9 @@ WARN_LOGFILE = "/user_data/ted/dev/xstudio/__build/docs/docs/doxygen/l
743743
# spaces.
744744
# Note: If this tag is empty the current directory is searched.
745745

746-
INPUT = "/user_data/ted/dev/xstudio/include/" \
747-
"/user_data/ted/dev/xstudio/src/" \
748-
"/user_data/ted/dev/xstudio/python/src/"
746+
INPUT = "../include/" \
747+
"../src/" \
748+
"../python/src/"
749749

750750
# This tag can be used to specify the character encoding of the source files
751751
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses

docs/conf.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@
5050
autosummary_generate = False
5151

5252
breathe_default_project = "xStudio"
53+
breathe_projects = {
54+
"xStudio": "_build/doxygen/xml"
55+
}
5356

5457

5558
# Add any paths that contain templates here, relative to this directory.

docs/conf.py.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@ autodoc_default_flags = ['members']
5050
autosummary_generate = False
5151

5252
breathe_default_project = "xStudio"
53+
breathe_projects = {
54+
"xStudio": "@DOXYGEN_OUTPUT_DIR@/xml"
55+
}
5356

5457

5558
# Add any paths that contain templates here, relative to this directory.

0 commit comments

Comments
 (0)