forked from qt-creator/qt-creator
help: try to fix windows case for qdoc detection
This commit is contained in:
15
doc/doc.pri
15
doc/doc.pri
@@ -1,9 +1,18 @@
|
|||||||
QDOC_BIN = $$(QTDIR)/bin/qdoc3
|
unix:QDOC_BIN = $$(QTDIR)/bin/qdoc3
|
||||||
|
win32:QDOC_BIN = $$(QTDIR)/bin/qdoc3.exe
|
||||||
win32:QDOC_BIN = $$replace(QDOC_BIN, "/", "\\")
|
win32:QDOC_BIN = $$replace(QDOC_BIN, "/", "\\")
|
||||||
|
|
||||||
|
# legacy branch, can be dropped as soon as we depend on Qt 4.6
|
||||||
!exists( $$QDOC_BIN ) {
|
!exists( $$QDOC_BIN ) {
|
||||||
QDOC_BIN = $$(QTDIR)/tools/qdoc3/qdoc3
|
unix:QDOC_BIN = $$(QTDIR)/tools/qdoc3/qdoc3
|
||||||
win32:QDOC_BIN = $$replace(QDOC_BIN, "/", "\\")
|
win32 {
|
||||||
|
QDOC_BIN = $$(QTDIR)/tools/qdoc3/release/qdoc3.exe
|
||||||
|
QDOC_BIN = $$replace(QDOC_BIN, "/", "\\")
|
||||||
|
!exists( $$QDOC_BIN ) {
|
||||||
|
QDOC_BIN = $$(QTDIR)/tools/qdoc3/debug/qdoc3.exe
|
||||||
|
QDOC_BIN = $$replace(QDOC_BIN, "/", "\\")
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
unix {
|
unix {
|
||||||
|
Reference in New Issue
Block a user