diff options
author | Milan Crha <mcrha@redhat.com> | 2014-03-25 19:04:58 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2014-03-25 19:04:58 +0800 |
commit | 8692b1cb72654888f0dab31843bdf05d3ac2a888 (patch) | |
tree | 3e172e8085830cf0770cf0a7ab04bd714753d3a9 /plugins/attachment-reminder/Makefile.am | |
parent | 399b1a6fc593a9c5e692923120346e0386f578e5 (diff) | |
download | gsoc2013-evolution-8692b1cb72654888f0dab31843bdf05d3ac2a888.tar gsoc2013-evolution-8692b1cb72654888f0dab31843bdf05d3ac2a888.tar.gz gsoc2013-evolution-8692b1cb72654888f0dab31843bdf05d3ac2a888.tar.bz2 gsoc2013-evolution-8692b1cb72654888f0dab31843bdf05d3ac2a888.tar.lz gsoc2013-evolution-8692b1cb72654888f0dab31843bdf05d3ac2a888.tar.xz gsoc2013-evolution-8692b1cb72654888f0dab31843bdf05d3ac2a888.tar.zst gsoc2013-evolution-8692b1cb72654888f0dab31843bdf05d3ac2a888.zip |
Add an --enable-code-coverage configure option to enable gcov support
When enabled, this will compile all libraries/binaries with the necessary
gcc and ld flags to enable code coverage support using gcov.
Diffstat (limited to 'plugins/attachment-reminder/Makefile.am')
-rw-r--r-- | plugins/attachment-reminder/Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/attachment-reminder/Makefile.am b/plugins/attachment-reminder/Makefile.am index e4a7d99cc0..9fbbdb1271 100644 --- a/plugins/attachment-reminder/Makefile.am +++ b/plugins/attachment-reminder/Makefile.am @@ -16,11 +16,12 @@ liborg_gnome_evolution_attachment_reminder_la_CPPFLAGS = \ -DEVOLUTION_PLUGINDIR="\"$(plugindir)\"" \ $(EVOLUTION_DATA_SERVER_CFLAGS) \ $(GNOME_PLATFORM_CFLAGS) \ - $(GTKHTML_CFLAGS) + $(GTKHTML_CFLAGS) \ + $(CODE_COVERAGE_CFLAGS) liborg_gnome_evolution_attachment_reminder_la_SOURCES = attachment-reminder.c -liborg_gnome_evolution_attachment_reminder_la_LDFLAGS = -module -avoid-version $(NO_UNDEFINED) +liborg_gnome_evolution_attachment_reminder_la_LDFLAGS = -module -avoid-version $(NO_UNDEFINED) $(CODE_COVERAGE_LDFLAGS) liborg_gnome_evolution_attachment_reminder_la_LIBADD = \ $(top_builddir)/composer/libevolution-mail-composer.la \ |