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 /modules/settings | |
| 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 'modules/settings')
| -rw-r--r-- | modules/settings/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/settings/Makefile.am b/modules/settings/Makefile.am index faf0fdfe17..3c9bdb0327 100644 --- a/modules/settings/Makefile.am +++ b/modules/settings/Makefile.am @@ -9,6 +9,7 @@ module_settings_la_CPPFLAGS = \ $(EVOLUTION_DATA_SERVER_CFLAGS) \ $(GNOME_PLATFORM_CFLAGS) \ $(GTKHTML_CFLAGS) \ + $(CODE_COVERAGE_CFLAGS) \ $(NULL) module_settings_la_SOURCES = \ @@ -68,6 +69,6 @@ module_settings_la_LIBADD = \ $(NULL) module_settings_la_LDFLAGS = \ - -avoid-version -module $(NO_UNDEFINED) + -avoid-version -module $(NO_UNDEFINED) $(CODE_COVERAGE_LDFLAGS) -include $(top_srcdir)/git.mk |
