X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=tests%2Fdbus_api%2FMakefile.am;h=6f543498c07faa5332e2ee643b671e9d48b1a2e6;hb=07b7ad35990c57d36183fa0914b63e314ffe74ac;hp=969a0b9ea0791a506bd2231a5f27bd11dd6cb800;hpb=882756f1363905c5cec050cacc5a410c85b94e82;p=modest diff --git a/tests/dbus_api/Makefile.am b/tests/dbus_api/Makefile.am index 969a0b9..6f54349 100644 --- a/tests/dbus_api/Makefile.am +++ b/tests/dbus_api/Makefile.am @@ -1,23 +1,75 @@ INCLUDES=\ @CHECK_CFLAGS@ \ + $(LIBMODEST_DBUS_CLIENT_CFLAGS) \ $(MODEST_GSTUFF_CFLAGS)\ $(MODEST_LIBTINYMAIL_GNOME_DESKTOP_CFLAGS) \ $(MODEST_LIBTINYMAIL_MAEMO_CFLAGS) \ - -I$(MODEST_PLATFORM) \ + -I$(MODEST_TOOLKIT_DIR) \ -I${top_srcdir}/src \ -I$(top_srcdir) \ -DPREFIX=\"@prefix@\" \ -DMODESTLOCALEDIR=\""$(modestlocaledir)"\" - + objects=\ @CHECK_LIBS@ \ + $(LIBMODEST_DBUS_CLIENT_LIBS) \ $(MODEST_GSTUFF_LIBS) \ - $(MODEST_LIBTINYMAIL_GNOME_DESKTOP_LIBS) \ - $(MODEST_LIBTINYMAIL_MAEMO_LIBS) \ - ${top_srcdir}/libmodest-dbus-client/libmodest-dbus-client-1.0.la - -noinst_PROGRAMS = test_hello + $(MODEST_PLATFORM_LIBS) \ + $(MODEST_TOOLKIT_LIBS) \ + $(MODEST_HILDON_HELP_LIBS) \ + $(MODEST_HILDON_NOTIFY_LIBS) \ + $(MODEST_OGS_LIBS) + +noinst_PROGRAMS = \ + test_mail_to \ + test_open_message \ + test_search \ + test_get_unread_msgs \ + test_delete_message \ + test_compose_mail \ + test_open_default_inbox \ + test_get_folders \ + test_top_application \ + test_update_account \ + test_update_folder_counts \ + test_open_account \ + test_open_edit_accounts_dialog + +test_mail_to_SOURCES = test_mail_to.c +test_mail_to_LDADD = $(objects) + +test_open_message_SOURCES = test_open_message.c +test_open_message_LDADD = $(objects) + +test_compose_mail_SOURCES = test_compose_mail.c +test_compose_mail_LDADD = $(objects) + +test_search_SOURCES = test_search.c +test_search_LDADD = $(objects) + +test_get_unread_msgs_SOURCES = test_get_unread_msgs.c +test_get_unread_msgs_LDADD = $(objects) + +test_delete_message_SOURCES = test_delete_message.c +test_delete_message_LDADD = $(objects) + +test_open_default_inbox_SOURCES = test_open_default_inbox.c +test_open_default_inbox_LDADD = $(objects) + +test_get_folders_SOURCES = test_get_folders.c +test_get_folders_LDADD = $(objects) + +test_top_application_SOURCES = test_top_application.c +test_top_application_LDADD = $(objects) + +test_update_account_SOURCES = test_update_account.c +test_update_account_LDADD = $(objects) + +test_update_folder_counts_SOURCES = test_update_folder_counts.c +test_update_folder_counts_LDADD = $(objects) -test_hello_SOURCES = test_hello.c -test_hello_LDADD = $(objects) +test_open_account_SOURCES = test_open_account.c +test_open_account_LDADD = $(objects) +test_open_edit_accounts_dialog_SOURCES = test_open_edit_accounts_dialog.c +test_open_edit_accounts_dialog_LDADD = $(objects)