view libpurple/tests/Makefile.am @ 21728:86f62b1e2a5a

g_return_if_fail() if the chat room name or exchange aren't set or don't meet the requirements specified by the proto_chat_entry. It is the UI's responsibility to send the prpl valid chat room parameters. Fixes #4137.
author Mark Doliner <mark@kingant.net>
date Sun, 02 Dec 2007 20:02:53 +0000
parents acd7e486db43
children b8774519bda0
line wrap: on
line source

if HAVE_CHECK
TESTS=check_libpurple

clean-local:
	-rm -rf libpurple..

check_PROGRAMS=check_libpurple

check_libpurple_SOURCES=\
        check_libpurple.c \
	    tests.h \
		test_cipher.c \
		test_jabber_jutil.c \
		test_util.c \
		$(top_builddir)/libpurple/util.h

check_libpurple_CFLAGS=\
        @CHECK_CFLAGS@ \
		$(GLIB_CFLAGS) \
		$(DEBUG_CFLAGS) \
		-I.. \
		-DBUILDDIR=\"$(top_builddir)\"

check_libpurple_LDADD=\
        @CHECK_LIBS@ \
		$(GLIB_LIBS) \
		$(top_builddir)/libpurple/protocols/jabber/libjabber.la \
		$(top_builddir)/libpurple/libpurple.la

endif