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
|
include(../common/test-common.pri)
TARGET = ut_simplugin
target.path = /opt/tests/$${PACKAGENAME}/$$TARGET
CONFIG += test link_pkgconfig
QT -= gui
QT += dbus testlib
PKGCONFIG += Qt5Contacts Qt5Versit qofono-qt5
PKGCONFIG += qtcontacts-sqlite-qt5-extensions qofonoext
INCLUDEPATH += \
../../plugins/sim \
../../src
HEADERS += \
test-sim-plugin.h \
../../plugins/sim/cdsimcontroller.h
SOURCES += \
test-sim-plugin.cpp \
../../plugins/sim/cdsimcontroller.cpp
INSTALLS += target
|