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
|
TEMPLATE = lib
TARGET = buteoprofiles
PLUGIN_IMPORT_PATH = Buteo/Profiles
QT -= gui
QT += qml dbus
CONFIG += qt plugin hide_symbols
INCLUDEPATH += ../libbuteosyncfw ../libbuteosyncfw/common ../libbuteosyncfw/profile
LIBS += -L../libbuteosyncfw -lbuteosyncfw5
target.path = $$[QT_INSTALL_QML]/$$PLUGIN_IMPORT_PATH
SOURCES += plugin.cpp \
syncresultmodelbase.cpp \
syncresultmodel.cpp \
multisyncresultmodel.cpp \
syncprofilewatcher.cpp \
syncmanager.cpp
HEADERS += syncresultmodelbase.h \
syncresultmodel.h \
multisyncresultmodel.h \
syncprofilewatcher.h \
profileentry.h \
syncmanager.h
OTHER_FILES += qmldir
qmldir.files += qmldir
qmldir.path += $$target.path
INSTALLS += target qmldir
|