blob: c1aa5694ffaf6dcb9f89a185a9a2e553f46528d6 (
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
|
TEMPLATE = lib
TARGET = mastodonbuteocommon
TARGET = $$qtLibraryTarget($$TARGET)
QT -= gui
QT += network dbus
CONFIG += link_pkgconfig
PKGCONFIG += accounts-qt5 buteosyncfw5 socialcache
INCLUDEPATH += $$PWD
HEADERS += \
$$PWD/buteosyncfw_p.h \
$$PWD/socialdbuteoplugin.h \
$$PWD/socialnetworksyncadaptor.h \
$$PWD/socialdnetworkaccessmanager_p.h \
$$PWD/trace.h
SOURCES += \
$$PWD/socialdbuteoplugin.cpp \
$$PWD/socialnetworksyncadaptor.cpp \
$$PWD/socialdnetworkaccessmanager_p.cpp \
$$PWD/trace.cpp
TARGETPATH = $$[QT_INSTALL_LIBS]
target.path = $$TARGETPATH
INSTALLS += target
|