summaryrefslogtreecommitdiffstats
path: root/examples/location/places/places.pro
blob: ab9b1547c10305b8d6b82c39d11dc64dfce77261 (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
33
34
35
36
37
38
39
40
41
42
43
TARGET = qml_location_places
TEMPLATE = app

QT += qml quick network
SOURCES += qmlplaceswrapper.cpp

RESOURCES += \
    placeswrapper.qrc

qmlcontent.files += \
    places.qml
OTHER_FILES += $$qmlcontent.files

qmlcontentplaces.files += \
    content/places/PlacesUtils.js \
    content/places/Group.qml \
    content/places/SearchBox.qml \
    content/places/CategoryDelegate.qml \
    content/places/SearchResultDelegate.qml \
    content/places/PlaceDelegate.qml \
    content/places/RatingView.qml \
    content/places/SearchResultView.qml \
    content/places/PlaceDialog.qml \
    content/places/CategoryDialog.qml \
    content/places/PlaceEditorials.qml \
    content/places/EditorialDelegate.qml \
    content/places/EditorialPage.qml \
    content/places/PlaceReviews.qml \
    content/places/ReviewDelegate.qml \
    content/places/ReviewPage.qml \
    content/places/PlaceImages.qml \
    content/places/MapComponent.qml \
    content/places/OptionsDialog.qml \
    content/places/CategoryView.qml

OTHER_FILES += $$qmlcontentplaces.files

include(../common/common.pri)

target.path = $$[QT_INSTALL_EXAMPLES]/qtlocation/declarative/places

INSTALLS += target