blob: 4ca97402a97ff0d30acc95537c79460acf06cb9e [file] [log] [blame]
Alexander Afanasyev5560fd42018-03-07 17:03:03 -05001from waflib import TaskGen
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -08002
3def options(opt):
Alexander Afanasyev5560fd42018-03-07 17:03:03 -05004 opt.add_option('--with-coverage', action='store_true', default=False,
5 help='Add compiler flags to enable code coverage information')
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -08006
7def configure(conf):
8 if conf.options.with_coverage:
Alexander Afanasyev4c32e742014-11-09 21:37:12 -08009 if not conf.options.debug:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -050010 conf.fatal('Code coverage flags require debug mode compilation (add --debug)')
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -080011 conf.check_cxx(cxxflags=['-fprofile-arcs', '-ftest-coverage', '-fPIC'],
12 linkflags=['-fprofile-arcs'], uselib_store='GCOV', mandatory=True)
13
14@TaskGen.feature('cxx','cc')
15@TaskGen.after('process_source')
16def add_coverage(self):
17 if getattr(self, 'use', ''):
18 self.use += ' GCOV'
19 else:
20 self.use = 'GCOV'