blob: 548970977807e6a703c6d274b9d7638326f62794 (
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
|
load(qt_module)
TEMPLATE = lib
CONFIG += plugin testplugin
TARGET = qtgeoservices_geocodingplugin
PLUGIN_TYPE=geoservices
QT += location
include($$QT_SOURCE_TREE/src/plugins/qpluginbase.pri)
# TODO not sure where to put test plugins in Qt 5
DESTDIR = $$QT.location.plugins/geoservices
HEADERS += qgeocodingmanagerengine_test.h \
qgeoserviceproviderplugin_test.h
SOURCES += qgeoserviceproviderplugin_test.cpp
INCLUDEPATH += ../../../src/location \
../../../src/location/maps \
../../../src/location/landmarks
target.path += $$[QT_INSTALL_PLUGINS]/geoservices
INSTALLS += target
|