97a23161f6
* Makefile.am: Use variables, instead of substitutions. * clutter/clutter-private.h: * clutter/clutter-main.h: Make clutter_do_event() public again, as we need it in clutter-gtk. * configure.ac: * clutter/x11/Makefile.am: * clutter/x11/clutter-x11.pc.in: Add a clutter-x11 pkg-config file for clutter-gtk, as it depends on the X11 backend API, as implemented by the GLX and EGLX backends. * clutter/x11/clutter-event-x11.c (event_translate): Do not propagate DestroyNotify events if the stage doesn't own the window. * tests/test-scale.c (main): Set values different from the default.
32 lines
759 B
Makefile
32 lines
759 B
Makefile
libclutterincludedir = $(includedir)/clutter-@CLUTTER_API_VERSION@/clutter
|
|
libclutterinclude_HEADERS = clutter-x11.h
|
|
|
|
clutter-x11-$(CLUTTER_API_VERSION).pc: clutter-x11.pc
|
|
@cp -f $< $(@F)
|
|
|
|
pkgconfig_DATA = clutter-x11-@CLUTTER_API_VERSION@.pc
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
|
|
INCLUDES = \
|
|
-DG_LOG_DOMAIN=\"ClutterX11\" \
|
|
-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-x11.la
|
|
|
|
libclutter_x11_la_SOURCES = \
|
|
clutter-backend-x11.h \
|
|
clutter-backend-x11.c \
|
|
clutter-event-x11.c \
|
|
clutter-stage-x11.h \
|
|
clutter-stage-x11.c \
|
|
clutter-x11.h
|
|
|
|
EXTRA_DIST = clutter-x11.pc.in
|