diff --git a/docs/Doxyfile.qmake b/docs/Doxyfile.qmake index 964864b9f..7f4723368 100644 --- a/docs/Doxyfile.qmake +++ b/docs/Doxyfile.qmake @@ -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 diff --git a/docs/docs.pro b/docs/docs.pro index d64c2add4..7af803e33 100644 --- a/docs/docs.pro +++ b/docs/docs.pro @@ -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 }