1TARGET = qml_location_places 2TEMPLATE = app 3 4QT += qml quick network positioning location 5SOURCES += main.cpp 6 7RESOURCES += \ 8 places.qrc 9 10OTHER_FILES += \ 11 places.qml \ 12 helper.js \ 13 items/MainMenu.qml \ 14 items/SearchBar.qml \ 15 items/MapComponent.qml \ 16 forms/Message.qml \ 17 forms/MessageForm.ui.qml \ 18 forms/SearchCenter.qml \ 19 forms/SearchCenterForm.ui.qml \ 20 forms/SearchBoundingBox.qml \ 21 forms/SearchBoundingBoxForm.ui.qml \ 22 forms/SearchBoundingCircle.qml \ 23 forms/SearchBoundingCircleForm.ui.qml \ 24 forms/PlaceDetails.qml \ 25 forms/PlaceDetailsForm.ui.qml \ 26 forms/SearchOptions.qml \ 27 forms/SearchOptionsForm.ui.qml \ 28 views/SuggestionView.qml \ 29 views/RatingView.qml \ 30 views/CategoryView.qml \ 31 views/CategoryDelegate.qml \ 32 views/SearchResultDelegate.qml \ 33 views/SearchResultView.qml \ 34 views/EditorialView.qml \ 35 views/EditorialDelegate.qml \ 36 views/EditorialPage.qml \ 37 views/ReviewView.qml \ 38 views/ReviewDelegate.qml \ 39 views/ReviewPage.qml \ 40 views/ImageView.qml 41 42target.path = $$[QT_INSTALL_EXAMPLES]/location/places 43INSTALLS += target 44 45