summaryrefslogtreecommitdiff
path: root/distfoldd/distfoldd.pro
blob: 3eb804e20cf7a37a74434d9ad497b5eb15c601d6 (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
TARGET   = distfoldd
TEMPLATE = app
CONFIG   += console
CONFIG   -= app_bundle

QT       += core network
QT       -= gui

CONFIG   += mobility
MOBILITY += systeminfo

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

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

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