mirror of
https://github.com/brl/mutter.git
synced 2024-11-24 09:00:42 -05:00
913c32ee34
Various clutter test directly use cogl symbols, so they should be linked against mutter-cogl as well. Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk> https://bugzilla.gnome.org/show_bug.cgi?id=769636
35 lines
943 B
Makefile
35 lines
943 B
Makefile
common_ldadd = \
|
|
$(top_builddir)/clutter/libmutter-clutter-@CLUTTER_API_VERSION@.la \
|
|
$(top_builddir)/../cogl/cogl/libmutter-cogl.la
|
|
|
|
|
|
check_PROGRAMS = \
|
|
test-text \
|
|
test-picking \
|
|
test-text-perf \
|
|
test-random-text \
|
|
test-cogl-perf
|
|
|
|
AM_CFLAGS = $(CLUTTER_CFLAGS) $(MAINTAINER_CFLAGS)
|
|
|
|
AM_CPPFLAGS = \
|
|
-DG_DISABLE_SINGLE_INCLUDES \
|
|
-DGLIB_DISABLE_DEPRECATION_WARNINGS \
|
|
-DCOGL_DISABLE_DEPRECATION_WARNINGS \
|
|
-DCLUTTER_DISABLE_DEPRECATION_WARNINGS \
|
|
-DTESTS_DATA_DIR=\""$(top_srcdir)/tests/data/"\" \
|
|
-I$(top_srcdir)/../cogl \
|
|
-I$(top_builddir)/../cogl \
|
|
-I$(top_srcdir) \
|
|
-I$(top_builddir) \
|
|
-I$(top_srcdir)/clutter \
|
|
-I$(top_builddir)/clutter
|
|
|
|
LDADD = $(common_ldadd) $(CLUTTER_LIBS) $(LIBM)
|
|
|
|
test_text_SOURCES = test-text.c
|
|
test_picking_SOURCES = test-picking.c
|
|
test_text_perf_SOURCES = test-text-perf.c
|
|
test_random_text_SOURCES = test-random-text.c
|
|
test_cogl_perf_SOURCES = test-cogl-perf.c
|