summaryrefslogtreecommitdiffstats
path: root/examples/demos/tweetsearch/tweetsearch.pro
blob: 3995a15f6778a6f518ddb0d893b38bc66b7d54cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
TEMPLATE = app

QT += quick qml
SOURCES += main.cpp

content.prefix = /demos/tweetsearch
content.files = \
        tweetsearch.qml \
        content/FlipBar.qml \
        content/LineInput.qml \
        content/ListFooter.qml \
        content/ListHeader.qml \
        content/SearchDelegate.qml \
        content/TweetDelegate.qml \
        content/tweetsearch.mjs \
        content/TweetsModel.qml \
        content/resources/anonymous.png \
        content/resources/bird-anim-sprites.png \
        content/resources/icon-clear.png \
        content/resources/icon-loading.png \
        content/resources/icon-refresh.png \
        content/resources/icon-search.png

RESOURCES += content

OTHER_FILES = tweetsearch.qml \
              content/*.qml \
              content/*.mjs \
              content/resources/*

target.path = $$[QT_INSTALL_EXAMPLES]/demos/tweetsearch
INSTALLS += target