~zsombi/ubuntu-ui-toolkit/theme-as-singleton

« back to all changes in this revision

Viewing changes to ubuntu-sdk.pro

  • Committer: Zsombor Egri
  • Date: 2013-12-13 14:10:39 UTC
  • mfrom: (890 trunk)
  • mto: This revision was merged to the branch mainline in revision 894.
  • Revision ID: zsombor.egri@canonical.com-20131213141039-tt2ra31geou2cgfl
trunk merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
license.commands = ./tests/license/checklicense.sh
36
36
QMAKE_EXTRA_TARGETS += license
37
37
 
 
38
DOC_SRC = .
 
39
equals(QT_MAJOR_VERSION, 5):lessThan(QT_MINOR_VERSION, 2) {
 
40
    DOC_SRC = documentation
 
41
}
 
42
 
38
43
DOC_PATH=$$system(pwd)/documentation
39
44
docs.target = docs
40
 
# Offline docs for QtCreator
41
 
docs.commands += qdoc $$DOC_PATH/ubuntu-ui-toolkit-qtcreator.qdocconf 2> $$DOC_PATH/qdoc.err;
42
 
docs.commands += cat $$DOC_PATH/qdoc.err;
43
 
docs.commands += test ! -s $$DOC_PATH/qdoc.err || exit 1;
44
 
docs.commands += qhelpgenerator -o "$$DOC_PATH/html/ubuntuuserinterfacetoolkit.qch" "$$DOC_PATH/html/ubuntuuserinterfacetoolkit.qhp";
45
 
# Online docs. Run qdoc twice: the second run with indexes for cross-referencing
46
 
# other APIs but discard errors because qdoc inherits all doc bugs otherwise
47
 
docs.commands += qdoc $$DOC_PATH/ubuntu-ui-toolkit-online.qdocconf 2> $$DOC_PATH/qdoc.err;
48
 
docs.commands += cat $$DOC_PATH/qdoc.err;
49
 
docs.commands += test ! -s $$DOC_PATH/qdoc.err || exit 1;
50
 
docs.commands += qdoc $$DOC_PATH/ubuntu-ui-toolkit-online-indexes.qdocconf 2> /dev/null;
51
 
docs.commands += $$DOC_PATH/fix-markup.sh $$DOC_PATH;
 
45
docs.commands = SRC=$$DOC_SRC ./documentation/docs.sh $$DOC_PATH;
52
46
QMAKE_EXTRA_TARGETS += docs
53
47