-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathfilesync.pro
More file actions
executable file
·48 lines (41 loc) · 987 Bytes
/
filesync.pro
File metadata and controls
executable file
·48 lines (41 loc) · 987 Bytes
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
QT += core
QT -= gui
CONFIG += c++11
TARGET = filesync
CONFIG += console
CONFIG -= app_bundle
LIBS += -L/usr/lib -lprotobuf -lcrypt -lpthread \
-L/home/chen/Desktop/work/build/release-install/lib -lmuduo_net -lmuduo_base \
-lz
INCLUDEPATH += /usr/local/include/google/protobuf \
/home/chen/Desktop/work/build/release-install/include
TEMPLATE = app
SOURCES += main.cpp \
socket.cpp \
sysutil.cpp \
test/socketTest.cpp \
test/filesendtest.cpp \
test/prototest.cpp \
test/muduo_test.cpp \
syncserver.cpp \
protobuf/filesync.pb.cc \
codec.cpp \
parseconfig.cpp \
str_tool.cpp \
test/parsetest.cpp \
rsync.cpp \
test/rsynctest.cpp \
test/oobServer.cpp
HEADERS += \
socket.h \
common.h \
sysutil.h \
test/echo.h \
syncserver.h \
protobuf/filesync.pb.h \
codec.h \
parseconfig.h \
str_tool.h \
rsync.h
DISTFILES += \
protobuf/filesync.proto