blob: 89f0117089b75880dfd3330defb60b50a8a5ea0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
TEMPLATE = lib
QT -= gui
QT += sql
CONFIG += link_pkgconfig
PKGCONFIG += socialcache
TARGET = mastodoncommon
TARGET = $$qtLibraryTarget($$TARGET)
HEADERS += \
$$PWD/mastodonpostsdatabase.h \
$$PWD/mastodonnotificationsdatabase.h
SOURCES += \
$$PWD/mastodonpostsdatabase.cpp \
$$PWD/mastodonnotificationsdatabase.cpp
TARGETPATH = $$[QT_INSTALL_LIBS]
target.path = $$TARGETPATH
INSTALLS += target
|