summaryrefslogtreecommitdiffstats
path: root/doc/doc.pri
diff options
context:
space:
mode:
authordpope <[email protected]>2012-02-03 15:45:25 +1000
committerRohan McGovern <[email protected]>2012-02-10 07:24:48 +0100
commitbc66ec0bc5f548a72d21557d529f2d03c7417f09 (patch)
tree53aa0444fc698cde712fb8e0486e3da1a56f853d /doc/doc.pri
parent98451b5e136af38b00b008ae58ec8243c981eee4 (diff)
Deprecation of the qt/quick3d repository.HEADmaster
Change-Id: I271146636615ab16f79ad3e66985076e2bd7a95c Reviewed-by: Sarah Jane Smith <[email protected]>
Diffstat (limited to 'doc/doc.pri')
-rw-r--r--doc/doc.pri32
1 files changed, 0 insertions, 32 deletions
diff --git a/doc/doc.pri b/doc/doc.pri
deleted file mode 100644
index 9853a537..00000000
--- a/doc/doc.pri
+++ /dev/null
@@ -1,32 +0,0 @@
-
-# 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/config/qt3d-online.qdocconf
-DESTDIR = $$OUT_PWD/doc
-
-win32:!win32-g++ {
- unixstyle = false
-} else :win32-g++:isEmpty(QMAKE_SH) {
- unixstyle = false
-} else {
- unixstyle = true
-}
-
-$$unixstyle {
- exists($$[QT_INSTALL_BINS]/qdoc3) {
- QDOC = $$[QT_INSTALL_BINS]/qdoc3
- } else {
- QDOC = qdoc3
- }
- 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 $$QDOCCONF_FILE)
-}
-
-QMAKE_EXTRA_TARGETS += docs