diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2009-08-02 01:11:33 +0800 |
---|---|---|
committer | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2009-08-22 21:13:12 +0800 |
commit | 3ac8eb4e2f6909d6c54718d6910b156359e10b42 (patch) | |
tree | 5a111ce92b3c1ddf52a67d6a5950e71a909f54e9 /tests | |
parent | 73a995007e5a417b0e1e0ebf13bdcfdf4dae7c7c (diff) | |
download | gsoc2013-empathy-3ac8eb4e2f6909d6c54718d6910b156359e10b42.tar gsoc2013-empathy-3ac8eb4e2f6909d6c54718d6910b156359e10b42.tar.gz gsoc2013-empathy-3ac8eb4e2f6909d6c54718d6910b156359e10b42.tar.bz2 gsoc2013-empathy-3ac8eb4e2f6909d6c54718d6910b156359e10b42.tar.lz gsoc2013-empathy-3ac8eb4e2f6909d6c54718d6910b156359e10b42.tar.xz gsoc2013-empathy-3ac8eb4e2f6909d6c54718d6910b156359e10b42.tar.zst gsoc2013-empathy-3ac8eb4e2f6909d6c54718d6910b156359e10b42.zip |
Move back the account assistant to src/
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 5 | ||||
-rw-r--r-- | tests/test-empathy-account-assistant.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index eb5dba529..8ffdae723 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -37,6 +37,11 @@ test_empathy_status_preset_dialog_SOURCES = test-empathy-status-preset-dialog.c test_empathy_protocol_chooser_SOURCES = test-empathy-protocol-chooser.c test_empathy_account_assistant_SOURCES = test-empathy-account-assistant.c +test_empathy_account_assistant_CFLAGS = -I$(top_srcdir)/src +test_empathy_account_assistant_LDADD = \ + $(top_builddir)/src/empathy-account-assistant.o \ + $(LDADD) + check_PROGRAMS = check-main TESTS = check-main check_main_SOURCES = \ diff --git a/tests/test-empathy-account-assistant.c b/tests/test-empathy-account-assistant.c index 5add95881..f1f519d77 100644 --- a/tests/test-empathy-account-assistant.c +++ b/tests/test-empathy-account-assistant.c @@ -3,7 +3,7 @@ #include <gtk/gtk.h> #include <libempathy-gtk/empathy-ui-utils.h> -#include <libempathy-gtk/empathy-account-assistant.h> +#include "empathy-account-assistant.h" int main (int argc, char **argv) { |