cmake: additional debug logging

pull/5678/head
Daniel Mensinger 5 years ago committed by Jussi Pakkanen
parent 845f0e1133
commit d9eac2544c
  1. 3
      mesonbuild/dependencies/base.py

@ -1299,6 +1299,9 @@ class CMakeDependency(ExternalDependency):
self.compile_args = list(map(lambda x: '-I{}'.format(x), incDirs)) + defs self.compile_args = list(map(lambda x: '-I{}'.format(x), incDirs)) + defs
self.link_args = libs self.link_args = libs
mlog.debug('using old-style CMake variables for dependency {}'.format(name)) mlog.debug('using old-style CMake variables for dependency {}'.format(name))
mlog.debug('Include Dirs: {}'.format(incDirs))
mlog.debug('Compiler Definitions: {}'.format(defs))
mlog.debug('Libraries: {}'.format(libs))
return return
# Even the old-style approach failed. Nothing else we can do here # Even the old-style approach failed. Nothing else we can do here

Loading…
Cancel
Save