mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 14:55:36 +08:00
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:
@@ -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
|
||||
|
||||
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user