blob: 59fb7e119e64e77e1c3bffd341fdec437c491646 (
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
30
|
# SPDX-FileCopyrightText: 2013 - 2026 Jolla Ltd.
#
# SPDX-License-Identifier: BSD-3-Clause
TEMPLATE = lib
TARGET = $$qtLibraryTarget(mastodonshareplugin)
CONFIG += plugin
DEPENDPATH += .
INCLUDEPATH += ..
INCLUDEPATH += ../../common
CONFIG += link_pkgconfig
PKGCONFIG += nemotransferengine-qt5 accounts-qt5 sailfishaccounts libsignon-qt5
HEADERS += mastodonshareplugin.h \
mastodonplugininfo.h \
../mastodonshareservicestatus.h
SOURCES += mastodonshareplugin.cpp \
mastodonplugininfo.cpp \
../mastodonshareservicestatus.cpp
target.path = $$[QT_INSTALL_LIBS]/nemo-transferengine/plugins/sharing
OTHER_FILES += *.qml
shareui.files = MastodonSharePost.qml
shareui.path = /usr/share/nemo-transferengine/plugins/sharing
INSTALLS += target shareui
|