mirror of
https://github.com/brl/mutter.git
synced 2024-11-13 01:36:10 -05:00
6ca13e54d8
Cogl and Clutter should be able to use the experimental API so this adds the required define to the CPPFLAGS in the Makefiles.
37 lines
1.0 KiB
Makefile
37 lines
1.0 KiB
Makefile
include $(top_srcdir)/build/autotools/Makefile.am.silent
|
|
|
|
libclutter_glx_includedir = $(includedir)/clutter-@CLUTTER_API_VERSION@/clutter/glx
|
|
libclutter_glx_include_HEADERS = clutter-glx.h clutter-glx-texture-pixmap.h
|
|
|
|
INCLUDES = \
|
|
-DG_LOG_DOMAIN=\"ClutterGLX\" \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/clutter \
|
|
-I$(top_srcdir)/clutter/cogl \
|
|
-I$(top_srcdir)/clutter/x11 \
|
|
-I$(top_builddir)/clutter \
|
|
-I$(top_builddir)/clutter/cogl \
|
|
-DCLUTTER_COMPILATION \
|
|
-DCOGL_ENABLE_EXPERIMENTAL_API \
|
|
$(CLUTTER_CFLAGS) \
|
|
$(CLUTTER_DEBUG_CFLAGS) \
|
|
$(MAINTAINER_CFLAGS)
|
|
|
|
LDADD = $(CLUTTER_LIBS) $(top_builddir)/clutter/x11/libclutter-x11.la
|
|
|
|
noinst_LTLIBRARIES = libclutter-glx.la
|
|
|
|
libclutter_glx_la_DEPENDENCIES = \
|
|
$(top_builddir)/clutter/x11/libclutter-x11.la
|
|
|
|
libclutter_glx_la_SOURCES = \
|
|
clutter-backend-glx.h \
|
|
clutter-backend-glx.c \
|
|
clutter-event-glx.h \
|
|
clutter-event-glx.c \
|
|
clutter-stage-glx.h \
|
|
clutter-stage-glx.c \
|
|
clutter-glx-texture-pixmap.h \
|
|
clutter-glx-texture-pixmap.c \
|
|
clutter-glx.h
|