-rw-r--r-- | rsync/config.in | 3 | ||||
-rw-r--r-- | rsync/rsync.pro | 60 |
2 files changed, 63 insertions, 0 deletions
diff --git a/rsync/config.in b/rsync/config.in new file mode 100644 index 0000000..d9502e4 --- a/dev/null +++ b/rsync/config.in | |||
@@ -0,0 +1,3 @@ | |||
1 | config LIBQRSYNC | ||
2 | boolean "qt rsync wrapper library" | ||
3 | default "y" | ||
diff --git a/rsync/rsync.pro b/rsync/rsync.pro new file mode 100644 index 0000000..a02d122 --- a/dev/null +++ b/rsync/rsync.pro | |||
@@ -0,0 +1,60 @@ | |||
1 | TEMPLATE= lib | ||
2 | |||
3 | CONFIG += qt staticlib warn_on | ||
4 | |||
5 | DESTDIR = $$(OPIEDIR)/lib | ||
6 | |||
7 | HEADERS += \ | ||
8 | buf.h \ | ||
9 | checksum.h \ | ||
10 | command.h \ | ||
11 | emit.h \ | ||
12 | job.h \ | ||
13 | netint.h \ | ||
14 | protocol.h \ | ||
15 | prototab.h \ | ||
16 | rsync.h \ | ||
17 | search.h \ | ||
18 | stream.h \ | ||
19 | sumset.h \ | ||
20 | trace.h \ | ||
21 | types.h \ | ||
22 | util.h \ | ||
23 | whole.h \ | ||
24 | config_rsync.h \ | ||
25 | qrsync.h | ||
26 | |||
27 | SOURCES += \ | ||
28 | base64.c \ | ||
29 | buf.c \ | ||
30 | checksum.c \ | ||
31 | command.c \ | ||
32 | delta.c \ | ||
33 | emit.c \ | ||
34 | hex.c \ | ||
35 | job.c \ | ||
36 | mdfour.c \ | ||
37 | mksum.c \ | ||
38 | msg.c \ | ||
39 | netint.c \ | ||
40 | patch.c \ | ||
41 | prototab.c \ | ||
42 | readsums.c \ | ||
43 | scoop.c \ | ||
44 | search.c \ | ||
45 | stats.c \ | ||
46 | stream.c \ | ||
47 | sumset.c \ | ||
48 | trace.c \ | ||
49 | tube.c \ | ||
50 | util.c \ | ||
51 | version.c \ | ||
52 | whole.c \ | ||
53 | qrsync.cpp | ||
54 | |||
55 | INCLUDEPATH += $(OPIEDIR)/include | ||
56 | |||
57 | LIBS += -lopiecore2 | ||
58 | TARGET = qrsync | ||
59 | |||
60 | include ( $(OPIEDIR)/include.pro ) | ||