diff options
-rw-r--r-- | tests/Makefile.am | 13 | ||||
-rw-r--r-- | tests/test1.c | 8 |
2 files changed, 21 insertions, 0 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am new file mode 100644 index 0000000000..646190475c --- /dev/null +++ b/tests/Makefile.am @@ -0,0 +1,13 @@ +# process this file with automake to create Makefile.in + +INCLUDES = -I$(top_srcdir)/intl -I$(top_srcdir)/camel \ + -I$(includedir) + +LDADD = \ + $(top_builddir)/camel/libcamel.la \ + $(GNOME_LIBDIR) \ + $(GNOMEUI_LIBS) $(INTLLIBS) + +noinst_PROGRAMS = \ + test1 + diff --git a/tests/test1.c b/tests/test1.c new file mode 100644 index 0000000000..061c9684e7 --- /dev/null +++ b/tests/test1.c @@ -0,0 +1,8 @@ +#include "camel-mime-message.h" + + +void +main (int argc, char**argv) +{ + +} |