mutter/test-fixtures/Makefile.am
Neil Roberts 6187b7c29f Add test-unit.h to test-fixtures/Makefile.am
Otherwise make distcheck was breaking.

Thanks to Rico Tzschichholz for pointing this out.

Reviewed-by: Robert Bragg <robert@linux.intel.com>

(cherry picked from commit d47b4d92187b9eb1b34998e02b96955afdd84a6e)
2013-07-04 11:50:31 +01:00

26 lines
510 B
Makefile

noinst_LTLIBRARIES = libtest-fixtures.la
libtest_fixtures_la_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_builddir)/cogl \
-Wall \
$(NULL)
if !USE_GLIB
libtest_fixtures_la_CPPFLAGS += -I$(top_builddir)/deps/glib
endif
libtest_fixtures_la_CPPFLAGS += \
-DCOGL_DISABLE_DEPRECATED \
-DTESTS_DATADIR=\""$(top_srcdir)/tests/data"\" \
-DCOGL_COMPILATION
libtest_fixtures_la_CFLAGS = -g3 -O0 $(COGL_DEP_CFLAGS) $(COGL_EXTRA_CFLAGS)
libtest_fixtures_la_SOURCES = \
test-unit.h \
test-utils.h \
test-utils.c