-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsyncClient.pro
executable file
·55 lines (49 loc) · 1.13 KB
/
syncClient.pro
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
QT += core
QT -= gui
CONFIG += c++11
TARGET = syncClient
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/filerecvtest.cpp \
threadpool.cpp \
test/threadpooltest.cpp \
eventloop.cpp \
test/inotifytest.cpp \
test/prototest.cpp \
codec.cpp \
protobuf/filesync.pb.cc \
TimeStamp.cpp \
TimerHeap.cpp \
test/timerheaptest.cpp \
parseconfig.cpp \
str_tool.cpp \
rsync.cpp \
test/oobClient.cpp
HEADERS += \
common.h \
socket.h \
sysutil.h \
threadpool.h \
mutexlock.h \
mutexlockguard.h \
condition.h \
eventloop.h \
codec.h \
protobuf/filesync.pb.h \
TimeStamp.h \
TimerHeap.h \
parseconfig.h \
str_tool.h \
rsync.h
DISTFILES += \
protobuf/filesync.proto