summaryrefslogtreecommitdiff
path: root/distfoldd/distfoldd.pro
blob: f2315d4a3fe2a9841e09e6822c746ec74d72d720 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
TARGET   = distfoldd
TEMPLATE = app
CONFIG   += console
CONFIG   -= app_bundle

QT       += core network
QT       -= gui

CONFIG   += mobility
MOBILITY += systeminfo

CONFIG   += crypto

SOURCES += main.cc \
    distfolder.cc \
    server.cc \
    watcher.cc \
    clientagent.cc \
    serveragent.cc \
    agent.cc \
    discoverer.cc \
    compressor.cc \
    localkey.cc

HEADERS += \
    distfolder.h \
    server.h \
    watcher.h \
    clientagent.h \
    serveragent.h \
    agent.h \
    discoverer.h \
    compressor.h \
    localkey.h

contains(MEEGO_EDITION,harmattan) {
	target.path = /opt/distfold/bin
	INSTALLS += target

	service.files = distfoldd.conf
	service.path = /etc/init/apps
	INSTALLS += service
}