76981c44a4
* clutter/Makefile.am: * clutter/clutter-stage.c: * clutter/sdl/Makefile.am: * clutter/sdl/clutter-backend-sdl.c: * clutter/sdl/clutter-backend-sdl.h: * clutter/sdl/clutter-event-sdl.c: * clutter/sdl/clutter-sdl.h: * clutter/sdl/clutter-stage-sdl.c: * clutter/sdl/clutter-stage-sdl.h: * configure.ac: Add a basic SDL based backend. Lacks real input event handling (translation) as yet. Also allows for clutter to be built against dgles.
24 lines
563 B
Makefile
24 lines
563 B
Makefile
libclutterincludedir = $(includedir)/clutter-@CLUTTER_API_VERSION@/clutter
|
|
libclutterinclude_HEADERS = clutter-sdl.h
|
|
|
|
INCLUDES = \
|
|
-DG_LOG_DOMAIN=\"ClutterSDL\" \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/clutter/cogl \
|
|
-I$(top_srcdir)/clutter/cogl/@CLUTTER_COGL@ \
|
|
$(CLUTTER_CFLAGS) \
|
|
$(CLUTTER_DEBUG_CFLAGS) \
|
|
$(GCC_FLAGS)
|
|
|
|
LDADD = $(CLUTTER_LIBS)
|
|
|
|
noinst_LTLIBRARIES = libclutter-sdl.la
|
|
|
|
libclutter_sdl_la_SOURCES = \
|
|
clutter-backend-sdl.h \
|
|
clutter-backend-sdl.c \
|
|
clutter-event-sdl.c \
|
|
clutter-stage-sdl.h \
|
|
clutter-stage-sdl.c \
|
|
clutter-sdl.h
|