cppunit: disable doxygen (#24850)

This commit is contained in:
Valentin Volkl 2021-07-13 14:25:26 +02:00 committed by GitHub
parent 326fe433b3
commit 7f24feb5a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,3 +26,7 @@ def setup_build_environment(self, env):
cxxstdflag = '' if cxxstd == 'default' else \
getattr(self.compiler, 'cxx{0}_flag'.format(cxxstd))
env.append_flags('CXXFLAGS', cxxstdflag)
def configure_args(self):
args = ["--disable-doxygen"]
return args