blob: 79a6f66cf008247571636ccec1817e53ba2cdaf0 (
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
|
TARGET = qtposition_geoclue
QT += location gui
load(qt_plugin)
DESTDIR = $$QT.location.plugins/position
HEADERS += \
qgeopositioninfosource_geocluemaster_p.h \
qgeopositioninfosourcefactory_geoclue.h
SOURCES += \
qgeopositioninfosource_geocluemaster.cpp \
qgeopositioninfosourcefactory_geoclue.cpp
INCLUDEPATH += $$QT.location.includes
CONFIG += link_pkgconfig
PKGCONFIG += geoclue gconf-2.0
target.path += $$[QT_INSTALL_PLUGINS]/position
INSTALLS += target
OTHER_FILES += \
plugin.json
|