forked from brendan0powers/QtRpc2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqtrpc2.pro
157 lines (148 loc) · 3.7 KB
/
qtrpc2.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
TEMPLATE = lib
CONFIG += dll \
debug
SOURCES += returnvalue.cpp \
signature.cpp \
proxybase.cpp \
clientmessagebus.cpp \
clientprotocolthread.cpp \
clientprotocolbase.cpp \
clientproxy.cpp \
server.cpp \
serviceproxy.cpp \
clientprotocoltest.cpp \
serverprotocolinstancebase.cpp \
serverprotocollistenerbase.cpp \
serverthread.cpp \
serverprotocollistenertcp.cpp \
serverprotocolinstanceiodevice.cpp \
message.cpp \
serverprotocolinstancetcp.cpp \
clientprotocoltcp.cpp \
clientprotocoliodevice.cpp \
serverprotocollistenerprocess.cpp \
servicepublisher.cpp \
servicefinder.cpp \
authtoken.cpp \
servicefactoryparent.cpp \
qxtdiscoverableservice.cpp \
qxtdiscoverableservicename.cpp \
qxtservicebrowser.cpp
unix {
LIBS += -ldns_sd
SOURCES += qxtmdns_avahi.cpp \
qxtavahipoll.cpp
HEADERS += qxtmdns_avahi.h qxtmdns_avahi_p.h \
qxtavahipoll.h \
qxtavahipoll_p.h
LIBS += -lavahi-client -lavahi-common
SOURCES += clientprotocolsocket.cpp \
serverprotocollistenersocket.cpp \
serverprotocolinstancesocket.cpp
HEADERS += serverprotocollistenersocket_p.h \
serverprotocolinstancesocket_p.h \
clientprotocolsocket_p.h \
serverprotocollistenersocket.h \
serverprotocolinstancesocket.h \
clientprotocolsocket.h
}
win32 {
SOURCES += qxtmdns_bonjour.cpp
HEADERS += qxtmdns_bonjour.h
INCLUDEPATH += $$quote(C:/Program Files/Bonjour SDK/Include/)
LIBS += $$quote(C:/Program Files/Bonjour SDK/Lib/Win32/dnssd.lib)
#LIBS += $$quote(C:/rds/qtrpc2/dnssd.dll)
}
HEADERS += returnvalue.h \
signature.h \
proxybase.h \
clientprotocolthread.h \
clientmessagebus.h \
clientprotocolbase.h \
clientproxy.h \
server.h \
serviceproxy.h \
clientprotocoltest.h \
serverprotocolinstancebase.h \
serverprotocollistenerbase.h \
serverthread.h \
serverprotocollistenertcp.h \
serverprotocolinstanceiodevice.h \
message.h \
serverprotocolinstancetcp.h \
clientprotocoltcp.h \
clientprotocoliodevice.h \
serverprotocollistenerprocess.h \
servicefactory.h \
servicepublisher.h \
servicepublisher_p.h \
servicefinder.h \
servicefinder_p.h \
server_p.h \
clientproxy_p.h \
clientmessagebus_p.h \
clientprotocolbase_p.h \
clientprotocoliodevice_p.h \
clientprotocoltcp_p.h \
clientprotocolthread_p.h \
message_p.h \
proxybase_p.h \
returnvalue_p.h \
serverprotocolinstancebase_p.h \
serverprotocolinstanceiodevice_p.h \
serverprotocolinstancetcp_p.h \
serverprotocollistenerbase_p.h \
serverprotocollistenerprocess_p.h \
serverprotocollistenertcp_p.h \
serverthread_p.h \
signature_p.h \
serviceproxy_p.h \
clientprotocoltest_p.h \
qtrpcprivate.h \
authtoken.h \
authtoken_p.h \
servicefactoryparent_p.h \
automaticmetatyperegistry.h \
qxtdiscoverableservice.h \
qxtdiscoverableservicename.h \
qxtdiscoverableservice_p.h \
qxtservicebrowser.h \
qxtservicebrowser_p.h \
qxtzeroconf.h \
qxtmdns.h \
sleeper.h \
qtrpcglobal.h
DISTFILES += ReturnValue \
Signature \
TmpArgument \
ClientProtocolThread \
ClientMessageBus \
ClientProtocolBase \
ProxyBase \
ClientProtocolTest \
Server \
ServiceProxy \
ServerProtocolListenerBase \
ServerProtocolInstanceBase \
ServerThread \
ServerProtocolListenerTcp \
Message \
ServerProtocolInstanceIODevice \
ServerProtocolInstanceTcp \
ClientProtocolTcp \
ClientProtocolIODevice \
ClientProtocolSocket \
ServerProtocolListenerProcess \
ServiceFactory \
ServicePublisher \
ServiceFinder \
QSharedPointer \
AuthToken \
QtRpcSharedPointer \
AutomaticMetatypeRegistry
CONFIG -= release \
exceptions \
stl
QT += network
DEFINES += QTRPC2_BUILD_LIB
INCLUDEPATH += ../includes/ ./