Point DOXY_SRC_ROOT to source root

This is necessary to add samples and tests to doxygen config

refs #594
This commit is contained in:
Roland Winklmeier
2016-02-09 15:47:27 +01:00
parent 5670ba925a
commit 6f73eca3b9
2 changed files with 6 additions and 6 deletions

View File

@@ -764,7 +764,7 @@ WARN_LOGFILE =
# spaces.
# Note: If this tag is empty the current directory is searched.
INPUT = $(DOXY_SRC_ROOT)
INPUT = $(DOXY_SRC_ROOT)/src
# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
@@ -815,8 +815,8 @@ RECURSIVE = YES
# Note that relative paths are relative to the directory from which doxygen is
# run.
EXCLUDE = $(DOXY_SRC_ROOT)/xbus/libxplanemp \
$(DOXY_SRC_ROOT)/plugins/weatherdata/gfs/g2clib
EXCLUDE = $(DOXY_SRC_ROOT)/src/xbus/libxplanemp \
$(DOXY_SRC_ROOT)/src/plugins/weatherdata/gfs/g2clib
# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
# directories that are symbolic links (a Unix file system feature) are excluded

View File

@@ -16,17 +16,17 @@ isEmpty(DOXYGEN_BIN) {
DOXY_INPUT = .
win32-g++ {
doxy.commands = set DOXY_SRC_ROOT=$$SourceRoot\\src & \
doxy.commands = set DOXY_SRC_ROOT=$$SourceRoot & \
set QDOC_PATH=$$[QT_INSTALL_DOCS] & \
doxygen $$PWD/$$DOXYFILE
}
else:win32 {
doxy.commands = set DOXY_SRC_ROOT=$$SourceRoot\\src & \
doxy.commands = set DOXY_SRC_ROOT=$$SourceRoot & \
set QDOC_PATH=$$[QT_INSTALL_DOCS] & \
doxygen $$PWD\\$$DOXYFILE
}
else {
doxy.commands = DOXY_SRC_ROOT="$$SourceRoot/src" \
doxy.commands = DOXY_SRC_ROOT="$$SourceRoot" \
QDOC_PATH="$$[QT_INSTALL_DOCS]" \
doxygen $$PWD/$$DOXYFILE
}