summaryrefslogtreecommitdiffstats
path: root/doc/doc.pri
diff options
context:
space:
mode:
Diffstat (limited to 'doc/doc.pri')
-rw-r--r--doc/doc.pri8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/doc.pri b/doc/doc.pri
index a3698cb..b7bd43f 100644
--- a/doc/doc.pri
+++ b/doc/doc.pri
@@ -2,8 +2,8 @@
# Determine which qdoc3 binary we should be using. We try to use the
# one from the Qt we built against. Otherwise use "qdoc3" on the PATH.
TOPSRC = $$PWD/..
-QDOCCONF_FILE = $$PWD/src/qtestqml.qdocconf
-DESTDIR = $$OUT_PWD/doc/html
+QDOCCONF_FILE = $$PWD/config/qtquicktest.qdocconf
+DESTDIR = $$OUT_PWD/doc
win32:!win32-g++ {
unixstyle = false
@@ -19,14 +19,14 @@ $$unixstyle {
} else {
QDOC = qdoc3
}
- docs.commands = (TOPSRC=$$TOPSRC DESTDIR=$$DESTDIR $$QDOC -online $$QDOCCONF_FILE)
+ docs.commands = (TOPSRC=$$TOPSRC DESTDIR=$$DESTDIR $$QDOC $$QDOCCONF_FILE)
} else {
exists($$[QT_INSTALL_BINS]\\qdoc3.exe) {
QDOC = $$[QT_INSTALL_BINS]\\qdoc3
} else {
QDOC = qdoc3
}
- docs.commands = (set TOPSRC=$$TOPSRC&set DESTDIR=$$DESTDIR&$$QDOC -online $$QDOCCONF_FILE)
+ docs.commands = (set TOPSRC=$$TOPSRC&set DESTDIR=$$DESTDIR&$$QDOC $$QDOCCONF_FILE)
}
QMAKE_EXTRA_TARGETS += docs