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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
include(../version.pri)
TEMPLATE = lib
TARGET = ofono-qt
CONFIG += debug
DEFINES += BUILD_OFONO_QT_LIBRARY
QT += dbus
QT -= gui
INCLUDEPATH += ../
PUBLIC_HEADERS += libofono-qt_global.h \
ofonopropertysetting.h \
ofonomodeminterface.h \
ofonomodemmanager.h \
ofonomodem.h \
ofonophonebook.h \
ofonomessagemanager.h \
ofonomessagewaiting.h \
ofonoradiosettings.h \
ofonosimmanager.h \
ofonocallbarring.h \
ofonocallforwarding.h \
ofonocallmeter.h \
ofonocallsettings.h \
ofononetworkoperator.h \
ofononetworkregistration.h \
ofonosupplementaryservices.h \
ofonovoicecallmanager.h \
ofonovoicecall.h \
ofonocallvolume.h \
ofonomessage.h \
ofonoconnman.h \
ofonoconnmancontext.h \
ofonocellbroadcast.h
HEADERS += $$PUBLIC_HEADERS \
ofonointerface.h
SOURCES += ofonointerface.cpp \
ofonomodeminterface.cpp \
ofonomodemmanager.cpp \
ofonomodem.cpp \
ofonophonebook.cpp \
ofonomessagemanager.cpp \
ofonomessagewaiting.cpp \
ofonoradiosettings.cpp \
ofonosimmanager.cpp \
ofonocallbarring.cpp \
ofonocallforwarding.cpp \
ofonocallmeter.cpp \
ofonocallsettings.cpp \
ofononetworkoperator.cpp \
ofononetworkregistration.cpp \
ofonosupplementaryservices.cpp \
ofonovoicecallmanager.cpp \
ofonovoicecall.cpp \
ofonocallvolume.cpp \
ofonomessage.cpp \
ofonoconnman.cpp \
ofonoconnmancontext.cpp \
ofonocellbroadcast.cpp
target.path = $$[QT_INSTALL_LIBS]
headers.files = $$PUBLIC_HEADERS
headers.path = $$[QT_INSTALL_PREFIX]/include/ofono-qt
CONFIG += create_pc create_prl
QMAKE_PKGCONFIG_DESTDIR = pkgconfig
QMAKE_PKGCONFIG_INCDIR = $$headers.path
QMAKE_PKGCONFIG_LIBDIR = $$target.path
qtconfig.path = $$[QT_INSTALL_ARCHDATA]/mkspecs/features
qtconfig.files = ofono-qt.prf
INSTALLS += target headers qtconfig
|