blob: 4631ab2d318d691b95e9550cec3d92e0dbe9eb0f (
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
|
TARGET = distfoldd
TEMPLATE = app
CONFIG += console
CONFIG -= app_bundle
QT += core network
QT -= gui
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
|