blob: da35fe89cd4cbebfcb55e3f8e2eb211db9638fb2 (
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
|
load(qt_module)
TARGET = qtposition_maemo
QT += location gui
load(qt_plugin)
DESTDIR = $$QT.location.plugins/position
#QTDIR_build:REQUIRES += "contains(QT_CONFIG, location)"
INCLUDEPATH += $$QT.location.includes
CONFIG += qdbus link_pkgconfig
SOURCES += qgeopositioninfosource_maemo.cpp \
qgeosatelliteinfosource_maemo.cpp \
dbuscomm_maemo.cpp \
dbusserver_maemo.cpp \
qgeopositioninfosourcefactory_maemo.cpp
HEADERS += qgeopositioninfosource_maemo_p.h \
qgeosatelliteinfosource_maemo_p.h \
dbuscomm_maemo_p.h \
dbusserver_maemo_p.h \
qgeopositioninfosourcefactory_maemo.h
target.path += $$[QT_INSTALL_PLUGINS]/position
INSTALLS += target
OTHER_FILES += \
plugin.json
|