summaryrefslogtreecommitdiffstats
path: root/qmake/doc/snippets/qmake/comments.pro
blob: 9fa85aa6f3c2e9a50357c695edf43a6f54637750 (plain)
1
2
3
4
5
6
7
8
9
10
#! [0]
# Comments usually start at the beginning of a line, but they
# can also follow other content on the same line.
#! [0]

#! [1]
# To include a literal hash character, use the $$LITERAL_HASH variable:
urlPieces = http://doc.qt.io/qt-5/qtextdocument.html pageCount
message($$join(urlPieces, $$LITERAL_HASH))
#! [1]