blob: c01e57184ed4f5f2c1118e4bfbcb58b92de8c732 (
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
|
# SPDX-FileCopyrightText: 2013 - 2026 Jolla Ltd.
#
# SPDX-License-Identifier: BSD-3-Clause
TEMPLATE = lib
QT -= gui
QT += sql
CONFIG += link_pkgconfig
PKGCONFIG += socialcache
TARGET = mastodoncommon
TARGET = $$qtLibraryTarget($$TARGET)
HEADERS += \
$$PWD/mastodonauthutils.h \
$$PWD/mastodontextutils.h \
$$PWD/mastodonpostsdatabase.h
SOURCES += \
$$PWD/mastodonpostsdatabase.cpp
TARGETPATH = $$[QT_INSTALL_LIBS]
target.path = $$TARGETPATH
INSTALLS += target
|