27fb294887
test-journal needs cogl_glib_source_new() which is not available when compiling cogl with --disable-glib. Reviewed-by: Robert Bragg <robert@linux.intel.com> (cherry picked from commit 71fadbbfacad6a7c0ed7b06252d1e5e5dadf66f5)
24 lines
471 B
Makefile
24 lines
471 B
Makefile
include $(top_srcdir)/build/autotools/Makefile.am.silent
|
|
|
|
NULL =
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir)
|
|
|
|
test_conformance_CPPFLAGS = \
|
|
-DCOGL_ENABLE_EXPERIMENTAL_API \
|
|
-DCOGL_DISABLE_DEPRECATED \
|
|
-DTESTS_DATADIR=\""$(top_srcdir)/tests/data"\"
|
|
|
|
|
|
noinst_PROGRAMS =
|
|
|
|
if USE_GLIB
|
|
noinst_PROGRAMS += test-journal
|
|
endif
|
|
|
|
AM_CFLAGS = $(COGL_DEP_CFLAGS) $(COGL_EXTRA_CFLAGS)
|
|
|
|
test_journal_SOURCES = test-journal.c
|
|
test_journal_LDADD = $(COGL_DEP_LIBS) $(top_builddir)/cogl/libcogl.la
|