mirror of
https://github.com/debauchee/barrier.git
synced 2024-12-19 08:51:41 +03:00
504bfa2def
and untested. also some known problems: not detecting an xscreensaver started after us and not detecting built-in screen saver activation (not sure if we can without using ugly extensions).
26 lines
572 B
Makefile
26 lines
572 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
NULL =
|
|
DEPTH = ..
|
|
|
|
# FIXME -- add CUnixPlatform.cpp as an unbuilt source
|
|
noinst_LIBRARIES = libplatform.a
|
|
libplatform_a_SOURCES = \
|
|
CPlatform.cpp \
|
|
CXWindowsClipboard.cpp \
|
|
CXWindowsScreen.cpp \
|
|
CXWindowsScreenSaver.cpp \
|
|
CXWindowsUtil.cpp \
|
|
CPlatform.h \
|
|
CUnixPlatform.h \
|
|
CXWindowsClipboard.h \
|
|
CXWindowsScreen.h \
|
|
CXWindowsScreenSaver.h \
|
|
CXWindowsUtil.h \
|
|
IPlatform.h \
|
|
$(NULL)
|
|
INCLUDES = \
|
|
-I$(DEPTH)/base \
|
|
-I$(DEPTH)/mt \
|
|
-I$(DEPTH)/synergy \
|
|
$(NULL)
|