diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2010-07-22 18:43:10 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2010-07-30 19:11:40 +0800 |
commit | 09224fdb009abd2cc54ff4c3b6c64b47970f47d3 (patch) | |
tree | 306af087f1db1a485e08e9002e0e7f3fb37adabe /tests | |
parent | 9f98cdc5cb1e709fbe150bb98b94e49e165e6d12 (diff) | |
download | gsoc2013-empathy-09224fdb009abd2cc54ff4c3b6c64b47970f47d3.tar gsoc2013-empathy-09224fdb009abd2cc54ff4c3b6c64b47970f47d3.tar.gz gsoc2013-empathy-09224fdb009abd2cc54ff4c3b6c64b47970f47d3.tar.bz2 gsoc2013-empathy-09224fdb009abd2cc54ff4c3b6c64b47970f47d3.tar.lz gsoc2013-empathy-09224fdb009abd2cc54ff4c3b6c64b47970f47d3.tar.xz gsoc2013-empathy-09224fdb009abd2cc54ff4c3b6c64b47970f47d3.tar.zst gsoc2013-empathy-09224fdb009abd2cc54ff4c3b6c64b47970f47d3.zip |
Add GTK_LIBS to build tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index f04882da0..577bb9091 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -13,14 +13,17 @@ AM_CPPFLAGS = \ -I$(top_srcdir) \ -DPKGDATADIR=\""$(pkgdatadir)"\" \ $(EMPATHY_CFLAGS) \ - $(GTK_CFLAGS) \ + $(GTK_CFLAGS) \ $(WARN_CFLAGS) \ - $(DISABLE_DEPRECATED) + $(DISABLE_DEPRECATED) \ + $(NULL) LDADD = \ $(top_builddir)/libempathy-gtk/libempathy-gtk.la \ $(top_builddir)/libempathy/libempathy.la \ - $(EMPATHY_LIBS) + $(EMPATHY_LIBS) \ + $(GTK_LIBS) \ + $(NULL) TEST_PROGS = \ empathy-utils-test \ |