-
Notifications
You must be signed in to change notification settings - Fork 7
/
Makefile.am
46 lines (41 loc) · 991 Bytes
/
Makefile.am
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
AM_CPPFLAGS = \
-DXRDP_CFG_PATH=\"${sysconfdir}/xrdp\" \
-DXRDP_SBIN_PATH=\"${sbindir}\" \
-DXRDP_SHARE_PATH=\"${datadir}/xrdp\" \
-DXRDP_PID_PATH=\"${localstatedir}/run\" \
-I$(top_srcdir)/common
AM_CXXFLAGS = \
--std=c++17
module_LTLIBRARIES = \
libulalaca.la
libulalaca_la_SOURCES = \
UnixSocket.cpp \
UnixSocket.hpp \
SocketStream.cpp \
SocketStream.hpp \
SystemCallException.cpp \
SystemCallException.hpp \
XrdpEvent.hpp \
XrdpEvent.cpp \
XrdpTransport.hpp \
XrdpTransport.cpp \
XrdpStream.hpp \
XrdpStream.cpp \
UlalacaMessages.hpp \
IPCConnection.hpp \
IPCConnection.cpp \
SessionBrokerClient.hpp \
SessionBrokerClient.cpp \
ProjectorClient.hpp \
ProjectorClient.cpp \
KeycodeMap.cpp \
ULSurface.cpp \
ULSurface.hpp \
XrdpUlalacaPrivate.cpp \
XrdpUlalacaPrivate.xrdpmodule.cpp \
XrdpUlalacaPrivate.hpp \
ulalaca.cpp \
ulalaca.hpp
libulalaca_la_LIBADD = \
$(top_builddir)/common/libcommon.la
# SUBDIRS = tests