summaryrefslogtreecommitdiffstats
path: root/src/daemon/daemon.pro
blob: c9f998a3f8048ca516ac23506730833292af37d2 (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
TARGET = jsondb
DESTDIR = $$QT.jsondb.bins
target.path = $$[QT_INSTALL_PREFIX]/bin
INSTALLS += target

LIBS += -L$$QT.jsondb.libs

QT = core network declarative

mac:CONFIG -= app_bundle

include(daemon.pri)

HEADERS += \
    $$PWD/dbserver.h

SOURCES += \
    $$PWD/main.cpp \
    $$PWD/dbserver.cpp

systemd {
    DEFINES += USE_SYSTEMD
    LIBS += -lsystemd-daemon
}