mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-26 18:55:38 +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.
|
# spaces.
|
||||||
# Note: If this tag is empty the current directory is searched.
|
# 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
|
# 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
|
# 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
|
# Note that relative paths are relative to the directory from which doxygen is
|
||||||
# run.
|
# run.
|
||||||
|
|
||||||
EXCLUDE = $(DOXY_SRC_ROOT)/xbus/libxplanemp \
|
EXCLUDE = $(DOXY_SRC_ROOT)/src/xbus/libxplanemp \
|
||||||
$(DOXY_SRC_ROOT)/plugins/weatherdata/gfs/g2clib
|
$(DOXY_SRC_ROOT)/src/plugins/weatherdata/gfs/g2clib
|
||||||
|
|
||||||
# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
|
# 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
|
# directories that are symbolic links (a Unix file system feature) are excluded
|
||||||
|
|||||||
@@ -16,17 +16,17 @@ isEmpty(DOXYGEN_BIN) {
|
|||||||
|
|
||||||
DOXY_INPUT = .
|
DOXY_INPUT = .
|
||||||
win32-g++ {
|
win32-g++ {
|
||||||
doxy.commands = set DOXY_SRC_ROOT=$$SourceRoot\\src & \
|
doxy.commands = set DOXY_SRC_ROOT=$$SourceRoot & \
|
||||||
set QDOC_PATH=$$[QT_INSTALL_DOCS] & \
|
set QDOC_PATH=$$[QT_INSTALL_DOCS] & \
|
||||||
doxygen $$PWD/$$DOXYFILE
|
doxygen $$PWD/$$DOXYFILE
|
||||||
}
|
}
|
||||||
else:win32 {
|
else:win32 {
|
||||||
doxy.commands = set DOXY_SRC_ROOT=$$SourceRoot\\src & \
|
doxy.commands = set DOXY_SRC_ROOT=$$SourceRoot & \
|
||||||
set QDOC_PATH=$$[QT_INSTALL_DOCS] & \
|
set QDOC_PATH=$$[QT_INSTALL_DOCS] & \
|
||||||
doxygen $$PWD\\$$DOXYFILE
|
doxygen $$PWD\\$$DOXYFILE
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
doxy.commands = DOXY_SRC_ROOT="$$SourceRoot/src" \
|
doxy.commands = DOXY_SRC_ROOT="$$SourceRoot" \
|
||||||
QDOC_PATH="$$[QT_INSTALL_DOCS]" \
|
QDOC_PATH="$$[QT_INSTALL_DOCS]" \
|
||||||
doxygen $$PWD/$$DOXYFILE
|
doxygen $$PWD/$$DOXYFILE
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user