mirror of
https://github.com/debauchee/barrier.git
synced 2024-11-24 06:15:57 +03:00
f48a5fe387
screens into CPrimaryScreen and merged common code from secondary screens into CSecondaryScreen. changed is-a relationship to a has-a between the primary and secondary screen classes and the generic platform dependent screen class to avoid multiple inheritance of implementation. also standardized the interface for those generic screen classes. adding a platform now involves implementing simpler interfaces: IScreen for the generic screen, IScreenEventHandler and some methods of CPrimaryScreen for the primary screen, and IScreenEventHandler and some methods of CSecondaryScreen for the secondary screen. did X11 platform but not win32 platform.
42 lines
828 B
Makefile
42 lines
828 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
NULL =
|
|
DEPTH = ..
|
|
|
|
noinst_LIBRARIES = libsynergy.a
|
|
libsynergy_a_SOURCES = \
|
|
CInputPacketStream.cpp \
|
|
COutputPacketStream.cpp \
|
|
CProtocolUtil.cpp \
|
|
CClipboard.cpp \
|
|
CTCPSocketFactory.cpp \
|
|
XScreen.cpp \
|
|
XSynergy.cpp \
|
|
CClipboard.h \
|
|
CInputPacketStream.h \
|
|
COutputPacketStream.h \
|
|
CProtocolUtil.h \
|
|
CTCPSocketFactory.h \
|
|
ClipboardTypes.h \
|
|
IClient.h \
|
|
IClipboard.h \
|
|
IPrimaryScreenReceiver.h\
|
|
IScreen.h \
|
|
IScreenEventHandler.h \
|
|
IScreenReceiver.h \
|
|
IScreenSaver.h \
|
|
IServer.h \
|
|
ISocketFactory.h \
|
|
KeyTypes.h \
|
|
MouseTypes.h \
|
|
ProtocolTypes.h \
|
|
Version.h \
|
|
XScreen.h \
|
|
XSynergy.h \
|
|
$(NULL)
|
|
INCLUDES = \
|
|
-I$(DEPTH)/base \
|
|
-I$(DEPTH)/mt \
|
|
-I$(DEPTH)/io \
|
|
-I$(DEPTH)/net \
|
|
$(NULL)
|