blob: a9e341cd09c8cb7e5c2ebb70ac94ad3270502700 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
TEMPLATE = lib
CONFIG += qt staticlib warn_on
DESTDIR = $$(OPIEDIR)/lib
HEADERS += \
buf.h \
checksum.h \
command.h \
emit.h \
job.h \
netint.h \
protocol.h \
prototab.h \
rsync.h \
search.h \
stream.h \
sumset.h \
trace.h \
types.h \
util.h \
whole.h \
config_rsync.h \
qrsync.h
SOURCES += \
base64.c \
buf.c \
checksum.c \
command.c \
delta.c \
emit.c \
hex.c \
job.c \
mdfour.c \
mksum.c \
msg.c \
netint.c \
patch.c \
prototab.c \
readsums.c \
scoop.c \
search.c \
stats.c \
stream.c \
sumset.c \
trace.c \
tube.c \
util.c \
version.c \
whole.c \
qrsync.cpp
INCLUDEPATH += $(OPIEDIR)/include .
LIBS += -lopiecore2
TARGET = qrsync
include( $(OPIEDIR)/include.pro )
|