2009-10-26 15:35:37 +01:00
|
|
|
QDOC_BIN = $$[QT_INSTALL_BINS]/qdoc3
|
2009-08-21 12:52:54 +02:00
|
|
|
win32:QDOC_BIN = $$replace(QDOC_BIN, "/", "\\")
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
unix {
|
2009-08-21 12:52:54 +02:00
|
|
|
QDOC = SRCDIR=$$PWD OUTDIR=$$OUT_PWD/doc/html $$QDOC_BIN
|
2009-10-26 15:35:37 +01:00
|
|
|
HELPGENERATOR = $$[QT_INSTALL_BINS]/qhelpgenerator
|
2008-12-02 12:01:29 +01:00
|
|
|
} else {
|
2009-09-30 00:45:37 +10:00
|
|
|
QDOC = set SRCDIR=$$PWD&& set OUTDIR=$$OUT_PWD/doc/html&& $$QDOC_BIN
|
|
|
|
# Always run qhelpgenerator inside its own cmd; this is a workaround for
|
|
|
|
# an unusual bug which causes qhelpgenerator.exe to do nothing
|
2009-10-26 15:35:37 +01:00
|
|
|
HELPGENERATOR = cmd /C $$replace($$list($$[QT_INSTALL_BINS]/qhelpgenerator.exe), "/", "\\")
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
2009-01-07 15:47:25 +01:00
|
|
|
QHP_FILE = $$OUT_PWD/doc/html/qtcreator.qhp
|
2009-01-16 17:33:56 +01:00
|
|
|
QCH_FILE = $$OUT_PWD/share/doc/qtcreator/qtcreator.qch
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-01-14 20:08:39 +01:00
|
|
|
unix {
|
|
|
|
html_docs.commands = $$QDOC $$PWD/qtcreator.qdocconf
|
|
|
|
} else {
|
2009-01-14 19:39:11 +01:00
|
|
|
html_docs.commands = \"$$QDOC $$PWD/qtcreator.qdocconf\"
|
2009-01-14 20:08:39 +01:00
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
html_docs.depends += $$PWD/qtcreator.qdoc $$PWD/qtcreator.qdocconf
|
|
|
|
html_docs.files = $$QHP_FILE
|
|
|
|
|
|
|
|
qch_docs.commands = $$HELPGENERATOR -o $$QCH_FILE $$QHP_FILE
|
|
|
|
qch_docs.depends += html_docs
|
|
|
|
qch_docs.files = $$QCH_FILE
|
|
|
|
|
2009-03-13 10:31:30 +01:00
|
|
|
unix:!macx {
|
2009-01-20 14:58:10 +01:00
|
|
|
qch_docs.path = /share/doc/qtcreator
|
2009-11-02 21:01:49 +01:00
|
|
|
qch_docs.CONFIG += no_check_exist
|
2009-01-20 14:58:10 +01:00
|
|
|
INSTALLS += qch_docs
|
|
|
|
}
|
|
|
|
|
2009-01-07 15:47:25 +01:00
|
|
|
macx {
|
2009-09-14 17:42:08 +02:00
|
|
|
DOC_DIR = "$${OUT_PWD}/bin/Qt Creator.app/Contents/Resources/doc"
|
|
|
|
cp_docs.commands = mkdir -p \"$${DOC_DIR}\" ; $${QMAKE_COPY} \"$${QCH_FILE}\" \"$${DOC_DIR}\"
|
2009-01-07 15:47:25 +01:00
|
|
|
cp_docs.depends += qch_docs
|
|
|
|
docs.depends = cp_docs
|
|
|
|
QMAKE_EXTRA_TARGETS += html_docs qch_docs cp_docs docs
|
|
|
|
}
|
|
|
|
!macx {
|
|
|
|
docs.depends = qch_docs
|
|
|
|
QMAKE_EXTRA_TARGETS += html_docs qch_docs docs
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-10-01 12:31:54 +02:00
|
|
|
OTHER_FILES = $$PWD/qtcreator.qdoc \
|
|
|
|
$$PWD/qtcreator.qdocconf
|
|
|
|
OTHER_FILES += $$PWD/api/qtcreator-api.qdoc \
|
|
|
|
$$PWD/api/qtcreator-api.qdocconf
|