Skip to content
Snippets Groups Projects
Commit f888f5df authored by Daniel Molkentin's avatar Daniel Molkentin
Browse files

help: try to fix windows case for qdoc detection

parent a4ff2aa7
No related branches found
No related tags found
No related merge requests found
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 {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment